24 lines
1.0 KiB
XML
24 lines
1.0 KiB
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.klp.mapper.WmsAttendanceScheduleMapper">
|
||
|
|
|
||
|
|
<resultMap type="com.klp.domain.WmsAttendanceSchedule" id="WmsAttendanceScheduleResult">
|
||
|
|
<result property="scheduleId" column="schedule_id"/>
|
||
|
|
<result property="userId" column="user_id"/>
|
||
|
|
<result property="workDate" column="work_date"/>
|
||
|
|
<result property="shiftId" column="shift_id"/>
|
||
|
|
<result property="shiftName" column="shift_name"/>
|
||
|
|
<result property="shiftGroup" column="shift_group"/>
|
||
|
|
<result property="remark" column="remark"/>
|
||
|
|
<result property="delFlag" column="del_flag"/>
|
||
|
|
<result property="createBy" column="create_by"/>
|
||
|
|
<result property="updateBy" column="update_by"/>
|
||
|
|
<result property="createTime" column="create_time"/>
|
||
|
|
<result property="updateTime" column="update_time"/>
|
||
|
|
</resultMap>
|
||
|
|
|
||
|
|
|
||
|
|
</mapper>
|