22 lines
915 B
XML
22 lines
915 B
XML
![]() |
<?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.ruoyi.zbf.mapper.ZbfProjectSectionMapper">
|
||
|
|
||
|
<resultMap type="com.ruoyi.zbf.domain.ZbfProjectSection" id="ZbfProjectSectionResult">
|
||
|
<result property="id" column="id"/>
|
||
|
<result property="projectId" column="project_id"/>
|
||
|
<result property="sectionName" column="section_name"/>
|
||
|
<result property="sectionDescribe" column="section_describe"/>
|
||
|
<result property="delFlag" column="del_flag"/>
|
||
|
<result property="createBy" column="create_by"/>
|
||
|
<result property="createTime" column="create_time"/>
|
||
|
<result property="updateBy" column="update_by"/>
|
||
|
<result property="updateTime" column="update_time"/>
|
||
|
<result property="remark" column="remark"/>
|
||
|
</resultMap>
|
||
|
|
||
|
|
||
|
</mapper>
|