123456789101112131415161718192021222324252627282930313233 |
- package com.ruoyi.system.mapper;
- import java.util.List;
- import com.baomidou.mybatisplus.annotation.InterceptorIgnore;
- import com.ruoyi.common.datascope.handler.DataColumn;
- import com.ruoyi.common.datascope.handler.DataPermission;
- import com.ruoyi.system.api.domain.SysLogininfor;
- import com.ruoyi.system.domain.SysJgZhgl;
- import com.ruoyi.common.datascope.utils.BaseMapperPlus;
- import org.apache.ibatis.annotations.Param;
- /**
- * 机构账号管理Mapper接口
- *
- * @author CH
- * @date 2022-05-31
- */
- @DataPermission({
- @DataColumn(key = "deptName", value = "create_unit",alias = "a")
- })
- public interface SysJgZhglMapper extends BaseMapperPlus<SysJgZhgl> {
- public List<SysJgZhgl> selectSysJgZhglList(SysJgZhgl sysJgZhgl);
- public SysJgZhgl selectSysJgZhglById(String id);
- @InterceptorIgnore(tenantLine = "true")
- public String selectuserCount(@Param("deptId") String deptId,@Param("userType") String userType);
- public int updateSysHgZhglByyljg(SysJgZhgl deptId);
- public int updateSysHgZhglBysqjg(SysJgZhgl deptId);
- }
|