石墨消解仪后端服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
282 B

  1. package com.iflytop.gd.app.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.iflytop.gd.app.model.entity.User;
  4. import org.apache.ibatis.annotations.Mapper;
  5. /**
  6. * 用户持久层接口
  7. */
  8. @Mapper
  9. public interface UserMapper extends BaseMapper<User> {
  10. }