自动化立体仓库 - WMS系统
#
yxFwq
2025-06-13 d60e84cbedb554555578f071de95c4a8049183db
src/main/java/com/zy/common/model/LocDetlDto.java
@@ -9,14 +9,24 @@
    private LocDetl locDetl;
    private String orderNo;
    private Double count;
    private Double pio = 13D;
    public LocDetlDto() {
    }
    public LocDetlDto(LocDetl locDetl, Double count) {
    public LocDetlDto(LocDetl locDetl, Double count ,String orderNo ,Double pio) {
        this.locDetl = locDetl;
        this.count = count;
        this.orderNo = orderNo;
        this.pio = pio;
    }
    public LocDetlDto(LocDetl locDetl, Double count ,String orderNo) {
        this.locDetl = locDetl;
        this.count = count;
        this.orderNo = orderNo;
    }
    public LocDetl getLocDetl() {
@@ -34,4 +44,20 @@
    public void setCount(Double count) {
        this.count = count;
    }
    public String getOrderNo() {
        return orderNo;
    }
    public void setOrderNo(String orderNo) {
        this.orderNo = orderNo;
    }
    public Double getPio() {
        return pio;
    }
    public void setPio(Double pio) {
        this.pio = pio;
    }
}