<?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>
|