SysJgZhglMapper.java 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. package com.ruoyi.system.mapper;
  2. import java.util.List;
  3. import com.baomidou.mybatisplus.annotation.InterceptorIgnore;
  4. import com.ruoyi.common.datascope.handler.DataColumn;
  5. import com.ruoyi.common.datascope.handler.DataPermission;
  6. import com.ruoyi.system.api.domain.SysLogininfor;
  7. import com.ruoyi.system.domain.SysJgZhgl;
  8. import com.ruoyi.common.datascope.utils.BaseMapperPlus;
  9. import org.apache.ibatis.annotations.Param;
  10. /**
  11. * 机构账号管理Mapper接口
  12. *
  13. * @author CH
  14. * @date 2022-05-31
  15. */
  16. @DataPermission({
  17. @DataColumn(key = "deptName", value = "create_unit",alias = "a")
  18. })
  19. public interface SysJgZhglMapper extends BaseMapperPlus<SysJgZhgl> {
  20. public List<SysJgZhgl> selectSysJgZhglList(SysJgZhgl sysJgZhgl);
  21. public SysJgZhgl selectSysJgZhglById(String id);
  22. @InterceptorIgnore(tenantLine = "true")
  23. public String selectuserCount(@Param("deptId") String deptId,@Param("userType") String userType);
  24. public int updateSysHgZhglByyljg(SysJgZhgl deptId);
  25. public int updateSysHgZhglBysqjg(SysJgZhgl deptId);
  26. }