32 lines
1.6 KiB
XML
32 lines
1.6 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.cnbm.packing.mapper.WoPackagingPrintHistoryMapper">
|
|
<resultMap type="com.cnbm.packing.entity.WoPackagingPrintHistory" id="WoPackagingPrintHistoryMap">
|
|
<id column="ID" property="id" />
|
|
<id column="BOX_NO" property="boxNo" />
|
|
<id column="PRINT_TIME" property="printTime" />
|
|
<id column="COMPLETION_REPORTING_TIME" property="completionReportingTime" />
|
|
<id column="PRINT_STATUS" property="printStatus" />
|
|
<id column="COMPLETION_REPORTING_STATUS" property="completionReportingStatus" />
|
|
<id column="LEAVE_LINE_TIME" property="leaveLineTime" />
|
|
<id column="PORT_ID" property="portId" />
|
|
<id column="PRINT_COUNT" property="printCount" />
|
|
<id column="VALID" property="valid" />
|
|
<id column="CREATOR_ID" property="creatorId" />
|
|
<id column="CREATOR_NAME" property="creatorName" />
|
|
<id column="CREATE_TIME" property="createTime" />
|
|
<id column="UPDATER_ID" property="updaterId" />
|
|
<id column="UPDATER_NAME" property="updaterName" />
|
|
<id column="UPDATE_TIME" property="updateTime" />
|
|
<id column="VERSION" property="version" />
|
|
<id column="REMARK" property="remark" />
|
|
</resultMap>
|
|
|
|
<select id="list" resultType="com.cnbm.packing.dto.WoPackagingPrintHistoryDTO">
|
|
select * from t_wo_packaging_print_history
|
|
where valid = 1
|
|
order by id asc
|
|
</select>
|
|
|
|
</mapper>
|