|
|
@ -10,10 +10,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
<result property="locationCode" column="location_code" />
|
|
|
|
<result property="locationCode" column="location_code" />
|
|
|
|
<result property="inspectionState" column="inspection_state" />
|
|
|
|
<result property="inspectionState" column="inspection_state" />
|
|
|
|
<result property="inspectionRemark" column="inspection_remark" />
|
|
|
|
<result property="inspectionRemark" column="inspection_remark" />
|
|
|
|
|
|
|
|
<result property="createTime" column="create_time" />
|
|
|
|
</resultMap>
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
|
|
<sql id="selectRecordInspectionInfoVo">
|
|
|
|
<sql id="selectRecordInspectionInfoVo">
|
|
|
|
select inspection_id, epc_code, location_code, inspection_state, inspection_remark from record_inspection_info
|
|
|
|
select inspection_id, epc_code, location_code, inspection_state, inspection_remark ,create_time from record_inspection_info
|
|
|
|
</sql>
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
|
|
|
|
<select id="selectRecordInspectionInfoList" parameterType="RecordInspectionInfo" resultMap="RecordInspectionInfoResult">
|
|
|
|
<select id="selectRecordInspectionInfoList" parameterType="RecordInspectionInfo" resultMap="RecordInspectionInfoResult">
|
|
|
|