| | |
| | | package com.lf.server.mapper.show; |
| | | |
| | | import com.lf.server.entity.show.ApplyEntity; |
| | | import com.lf.server.entity.sys.UserEntity; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | |
| | | /** |
| | | * 分页查询 |
| | | * |
| | | * @param userid 用户ID |
| | | * @param userid 用户ID |
| | | * @param limit 记录数 |
| | | * @param offset 偏移量 |
| | | * @return 列表 |
| | |
| | | public ApplyEntity selectById(int id); |
| | | |
| | | /** |
| | | * 根据单位ID查询用户 |
| | | * |
| | | * @param depid 单位ID |
| | | * @return 用户 |
| | | */ |
| | | public UserEntity selectUserByDepid(Integer depid); |
| | | |
| | | /** |
| | | * 插入一条 |
| | | * |
| | | * @param entity |