李林
2023-10-07 658d4927d468c47208fd012d9128b09249c07eff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?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.chinaztt.mes.basic.mapper.ShiftMapper">
 
    <resultMap id="basicShiftMap" type="com.chinaztt.mes.basic.entity.Shift">
        <id property="id" column="id"/>
        <result property="name" column="name"/>
        <result property="mondayWorking" column="monday_working"/>
        <result property="mondayHours" column="monday_hours"/>
        <result property="tuesdayWorking" column="tuesday_working"/>
        <result property="tuesdayHours" column="tuesday_hours"/>
        <result property="wensdayWorking" column="wensday_working"/>
        <result property="wensdayHours" column="wensday_hours"/>
        <result property="thursdayWorking" column="thursday_working"/>
        <result property="thursdayHours" column="thursday_hours"/>
        <result property="fridayWorking" column="friday_working"/>
        <result property="fridayHours" column="friday_hours"/>
        <result property="saturdayWorking" column="saturday_working"/>
        <result property="saturdayHours" column="saturday_hours"/>
        <result property="sundayWorking" column="sunday_working"/>
        <result property="sundayHours" column="sunday_hours"/>
        <result property="isNight" column="is_night"/>
    </resultMap>
</mapper>