parent
8a5de4d84a
commit
2b5cd3f13d
@ -0,0 +1,81 @@ |
||||
package com.shkj.wms.bo; |
||||
|
||||
import com.shkj.common.core.domain.BaseEntity; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
|
||||
/** |
||||
* 堆垛机任务异常记录分页查询对象 ecs_stacker_exception |
||||
* |
||||
* @author luochenghang |
||||
* @date 2022-07-06 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class SysStockNumQueryBo extends BaseEntity { |
||||
|
||||
/** 分页大小 */ |
||||
private Integer pageSize; |
||||
|
||||
/** 当前页数 */ |
||||
private Integer pageNum; |
||||
|
||||
/** 排序列 */ |
||||
private String orderByColumn; |
||||
|
||||
/** 排序的方向desc或者asc */ |
||||
private String isAsc; |
||||
|
||||
private String ptPart; |
||||
private String startDate; |
||||
private String endDate; |
||||
|
||||
/** |
||||
* 带时分秒的查询时间(操作入库时间) |
||||
*/ |
||||
private String startTime; |
||||
private String endTime; |
||||
|
||||
/** |
||||
* 机种(即车型) |
||||
*/ |
||||
private String ptBreakCat; |
||||
|
||||
/** |
||||
* 楼层 |
||||
*/ |
||||
private String layer; |
||||
|
||||
/** |
||||
* 货位 |
||||
*/ |
||||
private String location; |
||||
|
||||
/** |
||||
* 台车编号 |
||||
*/ |
||||
private String containerCode; |
||||
|
||||
|
||||
/** |
||||
* 库龄 |
||||
*/ |
||||
private Integer storageAge; |
||||
|
||||
/** |
||||
* 批次 |
||||
*/ |
||||
private String batchNo; |
||||
|
||||
/** |
||||
* 期初开始时间 |
||||
*/ |
||||
private String invTimeStart; |
||||
|
||||
/** |
||||
* 货位名称 |
||||
*/ |
||||
private String locationCode; |
||||
|
||||
} |
||||
@ -0,0 +1,116 @@ |
||||
package com.shkj.wms.vo; |
||||
|
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
|
||||
|
||||
/** |
||||
* 库存详情对象 |
||||
* |
||||
* @author zjx |
||||
* @date 2022-12-15 |
||||
*/ |
||||
@Data |
||||
public class SysStockNumDetailVo implements Serializable { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
/** |
||||
* 仓库名称 |
||||
*/ |
||||
|
||||
private String branchName; |
||||
/** |
||||
* 所在楼层 |
||||
*/ |
||||
|
||||
private String layer; |
||||
/** |
||||
* 库位 |
||||
*/ |
||||
private String locationCode; |
||||
/** |
||||
* 台车编号 |
||||
*/ |
||||
private String containerCode; |
||||
/** |
||||
* 物料编号 |
||||
*/ |
||||
private String ptPart; |
||||
|
||||
/** |
||||
* 物料名称 |
||||
*/ |
||||
private String ptName; |
||||
/** |
||||
* 规格 |
||||
*/ |
||||
private String ptDesc; |
||||
|
||||
/** |
||||
* 机种(即车型) |
||||
*/ |
||||
private String ptBreakCat; |
||||
|
||||
/** |
||||
* 在库数量 |
||||
*/ |
||||
private Integer qty; |
||||
|
||||
/** |
||||
* 待入库数量 |
||||
*/ |
||||
private Integer inQty; |
||||
|
||||
/** |
||||
* 待出库数量 |
||||
*/ |
||||
private Integer outQty; |
||||
|
||||
/** |
||||
* 缴库时间 |
||||
*/ |
||||
|
||||
private String inTime; |
||||
|
||||
/** |
||||
* 库龄 |
||||
*/ |
||||
private Integer storageAge; |
||||
|
||||
/** |
||||
* 批次 |
||||
*/ |
||||
private String rerpDate; |
||||
|
||||
/** |
||||
* 作业时间 |
||||
*/ |
||||
private String createTime; |
||||
|
||||
/** |
||||
* 作业类型 |
||||
*/ |
||||
private String type ; |
||||
|
||||
/** |
||||
* 批次 |
||||
*/ |
||||
private String batch; |
||||
|
||||
/** |
||||
* 开始时间之前的所有入库 |
||||
*/ |
||||
private Integer invInqty; |
||||
|
||||
/** |
||||
* 开始时间之前的所有出库 |
||||
*/ |
||||
private Integer invOutqty; |
||||
|
||||
/** |
||||
* 可用数量 |
||||
*/ |
||||
private Integer useQty; |
||||
|
||||
} |
||||
Loading…
Reference in new issue