入库单查询运输业务单号;
This commit is contained in:
+2
@@ -451,4 +451,6 @@ public class ReservationStockInOrderPO extends BaseVOEntity {
|
|||||||
|
|
||||||
@ApiModelProperty("NC客户编码")
|
@ApiModelProperty("NC客户编码")
|
||||||
private String customerNcCode;
|
private String customerNcCode;
|
||||||
|
@ApiModelProperty("运输业务单号")
|
||||||
|
private String businessNumber;
|
||||||
}
|
}
|
||||||
+2
@@ -474,4 +474,6 @@ public class ReservationStockInOrderDO extends BaseVOEntity {
|
|||||||
private Date pushTimeEnd;
|
private Date pushTimeEnd;
|
||||||
|
|
||||||
private String xfStatus;
|
private String xfStatus;
|
||||||
|
@ApiModelProperty("运输业务单号")
|
||||||
|
private String businessNumber;
|
||||||
}
|
}
|
||||||
+2
@@ -471,4 +471,6 @@ public class ReservationStockInOrderDTO extends ReservationStockInOrderBaseDTO {
|
|||||||
|
|
||||||
@ApiModelProperty(name = "入库时间查询条件结束日期")
|
@ApiModelProperty(name = "入库时间查询条件结束日期")
|
||||||
private String expectTimeEnd;
|
private String expectTimeEnd;
|
||||||
|
@ApiModelProperty("运输业务单号")
|
||||||
|
private String businessNumber;
|
||||||
}
|
}
|
||||||
+3
@@ -435,6 +435,9 @@
|
|||||||
<if test="reservationOrderSource != null and reservationOrderSource != ''">
|
<if test="reservationOrderSource != null and reservationOrderSource != ''">
|
||||||
and a.RESERVATION_ORDER_SOURCE = #{reservationOrderSource}
|
and a.RESERVATION_ORDER_SOURCE = #{reservationOrderSource}
|
||||||
</if>
|
</if>
|
||||||
|
<if test="businessNumber != null and businessNumber != ''">
|
||||||
|
and a.BUSINESS_NUMBER = #{businessNumber}
|
||||||
|
</if>
|
||||||
<if test="createByName != null and createByName != ''">
|
<if test="createByName != null and createByName != ''">
|
||||||
and a.create_by_name like concat('%', #{createByName}, '%')
|
and a.create_by_name like concat('%', #{createByName}, '%')
|
||||||
</if>
|
</if>
|
||||||
|
|||||||
Reference in New Issue
Block a user