27 lines
1.2 KiB
XML
27 lines
1.2 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.WmsMealReportMapper">
|
||
|
|
|
||
|
|
<resultMap type="com.klp.domain.WmsMealReport" id="WmsMealReportResult">
|
||
|
|
<result property="reportId" column="report_id"/>
|
||
|
|
<result property="reportDate" column="report_date"/>
|
||
|
|
<result property="mealType" column="meal_type"/>
|
||
|
|
<result property="deptName" column="dept_name"/>
|
||
|
|
<result property="totalPeople" column="total_people"/>
|
||
|
|
<result property="dineInPeople" column="dine_in_people"/>
|
||
|
|
<result property="takeoutPeople" column="takeout_people"/>
|
||
|
|
<result property="reportUserName" column="report_user_name"/>
|
||
|
|
<result property="status" column="status"/>
|
||
|
|
<result property="createBy" column="create_by"/>
|
||
|
|
<result property="createTime" column="create_time"/>
|
||
|
|
<result property="updateBy" column="update_by"/>
|
||
|
|
<result property="updateTime" column="update_time"/>
|
||
|
|
<result property="delFlag" column="del_flag"/>
|
||
|
|
<result property="remark" column="remark"/>
|
||
|
|
</resultMap>
|
||
|
|
|
||
|
|
|
||
|
|
</mapper>
|