| | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springblade.modules.system.entity.User; |
| | | import org.springblade.modules.system.entity.UserWx; |
| | | import org.springblade.modules.system.excel.UserExcel; |
| | | import org.springblade.modules.system.excel.UserWxExcel; |
| | | import org.springblade.modules.system.vo.UserVO; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | public interface UserWxMapper extends BaseMapper<UserWx> { |
| | | UserWx getUserWx(String tenantId, String account, String password); |
| | |
| | | List<String> getDeptName(@Param("deptId") String deptId); |
| | | |
| | | UserVO getUserDetailById(Long id); |
| | | |
| | | List<UserWxExcel> exportUser(@Param("obj") Map<String, Object> param); |
| | | } |