查询记录模块代码提交

cert
1178634255 2 years ago
parent 255354547a
commit f4581bc788

@ -35,7 +35,10 @@ public class TraceRecordRequest extends ListPageRequest {
* *
*/ */
private Date updateTime; private Date updateTime;
/**
* 1:2)
*/
private Integer traceSource;
/** /**
* UDI/ * UDI/
*/ */

@ -47,7 +47,10 @@ public class TraceRecordResponse {
* UDI/ * UDI/
*/ */
private Integer traceType; private Integer traceType;
/**
* 1:2)
*/
private Integer traceSource;
/** /**
* UDI * UDI
*/ */

@ -23,6 +23,12 @@
<if test="batchNo != '' and batchNo != null"> <if test="batchNo != '' and batchNo != null">
and `batchNo` = #{batchNo} and `batchNo` = #{batchNo}
</if> </if>
<if test="traceType != '' and traceType != null">
and trd.traceType = #{traceType}
</if>
<if test="traceSource != '' and traceSource != null">
and traceSource = #{traceSource}
</if>
</where> </where>
</select> </select>
</mapper> </mapper>

Loading…
Cancel
Save