Files
klp-oa/klp-system/src/main/resources/mapper/workflow/WfCopyMapper.xml

24 lines
990 B
XML
Raw Normal View History

<?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">
2025-07-17 18:07:48 +08:00
<mapper namespace="com.klp.workflow.mapper.WfCopyMapper">
2025-07-17 18:07:48 +08:00
<resultMap type="com.klp.workflow.domain.WfCopy" id="WfCopyResult">
<result property="copyId" column="copy_id"/>
<result property="title" column="title"/>
<result property="processId" column="process_id"/>
<result property="processName" column="process_name"/>
<result property="categoryId" column="category_id"/>
<result property="taskId" column="taskId"/>
<result property="userId" column="user_id"/>
<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="delFlag" column="del_flag"/>
</resultMap>
</mapper>