19 lines
783 B
XML
19 lines
783 B
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.ems.mapper.EmsTimePeriodMapper">
|
|
|
|
<resultMap type="com.klp.ems.domain.EmsTimePeriod" id="EmsTimePeriodResult">
|
|
<result property="periodId" column="period_id"/>
|
|
<result property="periodName" column="period_name"/>
|
|
<result property="periodType" column="period_type"/>
|
|
<result property="startTime" column="start_time"/>
|
|
<result property="endTime" column="end_time"/>
|
|
<result property="crossDay" column="cross_day"/>
|
|
<result property="delFlag" column="del_flag"/>
|
|
<result property="remark" column="remark"/>
|
|
</resultMap>
|
|
|
|
</mapper>
|