2026-05-08 15:40:39 +08:00
|
|
|
<?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.WmsAttendanceShiftRuleMapper">
|
|
|
|
|
|
|
|
|
|
<resultMap type="com.klp.domain.WmsAttendanceShiftRule" id="WmsAttendanceShiftRuleResult">
|
|
|
|
|
<result property="ruleId" column="rule_id"/>
|
|
|
|
|
<result property="ruleType" column="rule_type"/>
|
|
|
|
|
<result property="changeDays" column="change_days"/>
|
|
|
|
|
<result property="cycleDays" column="cycle_days"/>
|
|
|
|
|
<result property="shiftA" column="shift_a"/>
|
|
|
|
|
<result property="shiftB" column="shift_b"/>
|
2026-05-09 13:59:37 +08:00
|
|
|
<result property="changeShiftBId" column="change_shift_b_id"/>
|
|
|
|
|
<result property="changeShiftAId" column="change_shift_a_id"/>
|
2026-05-08 15:40:39 +08:00
|
|
|
<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>
|