Commit 526ec3ba70bc927cbdc1fe4860e46f1d0fbce44e

Authored by maliang
1 parent cb8335224f
Exists in master

测试提交userMapper

Showing 1 changed file with 19 additions and 0 deletions

center.manager/src/main/java/com/lyms/cm/dao/sys/SysUsersMapper.java View file @ 526ec3b
  1 +package com.lyms.cm.dao.sys;
  2 +
  3 +
  4 +import com.baomidou.mybatisplus.mapper.BaseMapper;
  5 +import com.lyms.cm.entity.sys.SysUsers;
  6 +
  7 +import org.springframework.stereotype.Repository;
  8 +/**
  9 + * <p>
  10 + * Mapper接口
  11 + * </p>
  12 + *
  13 + * @author maliang
  14 + * @since 2017-03-02
  15 + */
  16 +@Repository
  17 +public interface SysUsersMapper extends BaseMapper<SysUsers> {
  18 +
  19 +}