内部工作组

This commit is contained in:
caozhen
2023-09-06 17:14:48 +08:00
parent 9d7b57493a
commit 6901765754
6 changed files with 480 additions and 0 deletions
@@ -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.LawsWorkingGroup;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* @Description: 内部工作组
* @Author: jero-boot
* @Date: 2023-09-06
* @Version: V1.0
*/
public interface LawsWorkingGroupMapper extends BaseMapper<LawsWorkingGroup> {
}
@@ -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.LawsWorkingGroupMapper">
<resultMap id="LawsWorkingGroupResultMap" type="com.jero.modules.sys.entity.LawsWorkingGroup">
<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="pid" property="pid" />
<result column="name" property="name" />
<result column="level" property="level" />
<result column="del_flag" property="delFlag" />
</resultMap>
</mapper>