友链+级别+企标级别映射管理
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
package com.jero.modules.sys.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.jero.modules.sys.entity.LawsEnterpriseStandardLevel;
|
||||
|
||||
/**
|
||||
* @Description: 内部工作组
|
||||
* @Author: jero-boot
|
||||
* @Date: 2023-09-06
|
||||
* @Version: V1.0
|
||||
*/
|
||||
public interface LawsEnterprisestandardLevelMapper extends BaseMapper<LawsEnterpriseStandardLevel> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
package com.jero.modules.sys.mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
import com.jero.modules.sys.entity.LawsFriendlyLinks;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* @Description: 友情链接管理
|
||||
* @Author: jero-boot
|
||||
* @Date: 2023-09-07
|
||||
* @Version: V1.0
|
||||
*/
|
||||
public interface LawsFriendlyLinksMapper extends BaseMapper<LawsFriendlyLinks> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
package com.jero.modules.sys.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.jero.modules.sys.entity.LawsGrade;
|
||||
|
||||
/**
|
||||
* @Description: 级别
|
||||
* @Author: jero-boot
|
||||
* @Date: 2023-09-06
|
||||
* @Version: V1.0
|
||||
*/
|
||||
public interface LawsGradeMapper extends BaseMapper<LawsGrade> {
|
||||
|
||||
}
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.jero.modules.sys.mapper.LawsEnterprisestandardLevelMapper">
|
||||
<resultMap id="LawsEnterpriseStandardLevelResultMap" type="com.jero.modules.sys.entity.LawsEnterpriseStandardLevel">
|
||||
<id column="id" property="id" />
|
||||
<result column="create_by" property="createBy" />
|
||||
<result column="create_time" property="createTime" />
|
||||
<result column="update_by" property="updateBy" />
|
||||
<result column="update_time" property="updateTime" />
|
||||
<result column="org_code" property="orgCode" />
|
||||
<result column="grade_id" property="gradeId" />
|
||||
<result column="dept_id" property="deptId" />
|
||||
</resultMap>
|
||||
</mapper>
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.jero.modules.sys.mapper.LawsFriendlyLinksMapper">
|
||||
<resultMap id="LawsFriendlyLinksResultMap" type="com.jero.modules.sys.entity.LawsFriendlyLinks">
|
||||
<id column="id" property="id" />
|
||||
<result column="create_by" property="createBy" />
|
||||
<result column="create_time" property="createTime" />
|
||||
<result column="update_by" property="updateBy" />
|
||||
<result column="update_time" property="updateTime" />
|
||||
<result column="org_code" property="orgCode" />
|
||||
<result column="name" property="name" />
|
||||
<result column="link" property="link" />
|
||||
<result column="grounding" property="grounding" />
|
||||
<result column="sort" property="sort" />
|
||||
</resultMap>
|
||||
</mapper>
|
||||
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.jero.modules.sys.mapper.LawsGradeMapper">
|
||||
<resultMap id="LawsGradeMapperResultMap" type="com.jero.modules.sys.entity.LawsGrade">
|
||||
<id column="id" property="id" />
|
||||
<result column="create_by" property="createBy" />
|
||||
<result column="create_time" property="createTime" />
|
||||
<result column="update_by" property="updateBy" />
|
||||
<result column="update_time" property="updateTime" />
|
||||
<result column="org_code" property="orgCode" />
|
||||
<result column="level" property="level" />
|
||||
<result column="notes" property="notes" />
|
||||
</resultMap>
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user