12 changed files with 252 additions and 28 deletions
@ -0,0 +1,117 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.distribution.vo; |
||||
|
||||
import com.logpm.distribution.entity.DistributionStockArticleEntity; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
import java.io.Serializable; |
||||
import java.lang.reflect.Field; |
||||
import java.util.HashMap; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
|
||||
/** |
||||
* 配送在库订单 视图实体类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-06-13 |
||||
*/ |
||||
@Data |
||||
public class DistributionOrderZeroPackafeVO implements Serializable { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
private Long Id; |
||||
/** |
||||
* 总数 |
||||
*/ |
||||
private Integer quantity; |
||||
/** |
||||
* 品类 |
||||
*/ |
||||
private String firsts; |
||||
|
||||
private String warehouseName; |
||||
/** |
||||
* 入库车次 |
||||
*/ |
||||
private String trainNumber; |
||||
/** |
||||
* 订单自编号 |
||||
*/ |
||||
private String orderCode; |
||||
/** |
||||
* 品牌 |
||||
*/ |
||||
private String brandName; |
||||
/** |
||||
* 运单号 |
||||
*/ |
||||
private String waybillNumber; |
||||
/** |
||||
* 入库时间 |
||||
*/ |
||||
private String warehouseEntryTimeEnd; |
||||
/** |
||||
* 发站仓 |
||||
*/ |
||||
private String sendWarehouseName; |
||||
/** |
||||
* 收站仓 |
||||
*/ |
||||
private String acceptWarehouseName; |
||||
/** |
||||
* 托盘 |
||||
*/ |
||||
private String pallet; |
||||
/** |
||||
* 库位 |
||||
*/ |
||||
private String goodsAllocation; |
||||
/** |
||||
* 在库数量 |
||||
*/ |
||||
private Integer handQuantity; |
||||
/** |
||||
* 冻结数量 |
||||
*/ |
||||
private Integer deliveryQuantity; |
||||
/** |
||||
* 出库数量 |
||||
*/ |
||||
private Integer outboundQuantity; |
||||
/** |
||||
* 签收数量 |
||||
*/ |
||||
private Integer signinQuantity; |
||||
/** |
||||
* 品类 |
||||
*/ |
||||
private String aaa; |
||||
/** |
||||
* 品类 |
||||
*/ |
||||
private String bbb; |
||||
/** |
||||
* 品类 |
||||
*/ |
||||
private String ccc; |
||||
|
||||
|
||||
} |
Loading…
Reference in new issue