1、零部件出库单搜索调试
This commit is contained in:
parent
7a8f07ef76
commit
4bec1232a9
|
|
@ -1,6 +1,14 @@
|
|||
package com.nflg.wms.common.pojo.qo;
|
||||
|
||||
public class ComponentOutboundQO extends SearchBaseQO {
|
||||
import lombok.Data;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
import java.time.LocalDate;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
@Data
|
||||
@Accessors(chain = true)
|
||||
public class ComponentOutboundQO extends PageQO {
|
||||
/**
|
||||
* 装箱号
|
||||
*/
|
||||
|
|
@ -36,4 +44,18 @@ public class ComponentOutboundQO extends SearchBaseQO {
|
|||
* 出库单号
|
||||
*/
|
||||
private String outboundNo;
|
||||
|
||||
/**
|
||||
* 开始时间
|
||||
*/
|
||||
private LocalDateTime startDate;
|
||||
|
||||
/**
|
||||
* 结束时间
|
||||
*/
|
||||
private LocalDateTime endDate;
|
||||
|
||||
public LocalDateTime getEndDate() {
|
||||
return endDate == null ? null : endDate.plusDays(1);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue