|
|
@ -148,6 +148,7 @@ |
|
|
<result column="code" property="code" jdbcType="VARCHAR"/> |
|
|
<result column="code" property="code" jdbcType="VARCHAR"/> |
|
|
<result column="transferId" property="transferId" jdbcType="INTEGER"/> |
|
|
<result column="transferId" property="transferId" jdbcType="INTEGER"/> |
|
|
<result column="unit" property="unit" jdbcType="VARCHAR"/> |
|
|
<result column="unit" property="unit" jdbcType="VARCHAR"/> |
|
|
|
|
|
<result column="completeOutTime" property="completeOutTime" jdbcType="VARCHAR"/> |
|
|
</resultMap> |
|
|
</resultMap> |
|
|
|
|
|
|
|
|
<!-- 表查询字段 --> |
|
|
<!-- 表查询字段 --> |
|
|
@ -190,7 +191,7 @@ |
|
|
</sql> |
|
|
</sql> |
|
|
|
|
|
|
|
|
<sql id="ApplicationOutRecordMinInfo"> |
|
|
<sql id="ApplicationOutRecordMinInfo"> |
|
|
aorm.id,aorm.mid,aorm.depositoryId,aorm.placeId,aorm.quantity,aorm.code,aorm.checkId,aorm.parentId,aorm.transferId,aorm.trueOut,aorm.unit,aorm.project |
|
|
aorm.id,aorm.mid,aorm.depositoryId,aorm.placeId,aorm.quantity,aorm.code,aorm.checkId,aorm.parentId,aorm.transferId,aorm.trueOut,aorm.unit,aorm.project,aorm.completeOutTime |
|
|
</sql> |
|
|
</sql> |
|
|
<!-- 查询所有数据行数 --> |
|
|
<!-- 查询所有数据行数 --> |
|
|
<select id="findCount" resultType="integer"> |
|
|
<select id="findCount" resultType="integer"> |
|
|
@ -1443,6 +1444,9 @@ |
|
|
<if test="checkId != null"> |
|
|
<if test="checkId != null"> |
|
|
checkId = #{checkId}, |
|
|
checkId = #{checkId}, |
|
|
</if> |
|
|
</if> |
|
|
|
|
|
<if test="minRecordCompleteTime != null"> |
|
|
|
|
|
completeOutTime = #{minRecordCompleteTime}, |
|
|
|
|
|
</if> |
|
|
<if test="parentId != null "> |
|
|
<if test="parentId != null "> |
|
|
parentId = #{parentId}, |
|
|
parentId = #{parentId}, |
|
|
</if> |
|
|
</if> |
|
|
|