You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
120 lines
1.9 KiB
120 lines
1.9 KiB
package com.shkj.wms.bo;
|
|
|
|
import com.shkj.common.core.domain.BaseEntity;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.util.Date;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
|
|
/**
|
|
* 库存明细分页查询对象 sys_stock_detail
|
|
*
|
|
* @author lch
|
|
* @date 2023-05-05
|
|
*/
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = true)
|
|
public class SysStockDetailQueryBo extends BaseEntity {
|
|
|
|
/** 分页大小 */
|
|
private Integer pageSize;
|
|
|
|
/** 当前页数 */
|
|
private Integer pageNum;
|
|
|
|
/** 排序列 */
|
|
private String orderByColumn;
|
|
|
|
/** 排序的方向desc或者asc */
|
|
private String isAsc;
|
|
|
|
|
|
/**
|
|
* 货主id
|
|
*/
|
|
private Long consignorId;
|
|
|
|
/**
|
|
* 所属仓库
|
|
*/
|
|
private Long branchId;
|
|
|
|
/**
|
|
* 所属库房
|
|
*/
|
|
private Long storageId;
|
|
|
|
/**
|
|
* 所属区域
|
|
*/
|
|
private Long areaId;
|
|
|
|
/**
|
|
* 所属巷道
|
|
*/
|
|
private String tunnel;
|
|
|
|
/**
|
|
* 治具编号
|
|
*/
|
|
private Long containerCode;
|
|
|
|
/**
|
|
* 库存
|
|
*/
|
|
private BigDecimal qty;
|
|
|
|
/**
|
|
* 货位
|
|
*/
|
|
private Long locationId;
|
|
|
|
/**
|
|
* 批次信息
|
|
*/
|
|
private String batch;
|
|
|
|
/**
|
|
* 颜色
|
|
*/
|
|
private String color;
|
|
|
|
/**
|
|
* 车型
|
|
*/
|
|
private String vehicheModel;
|
|
/**
|
|
*库龄
|
|
*/
|
|
private String ontime;
|
|
/**
|
|
* 是否分体
|
|
*/
|
|
private String isSplit;
|
|
/**
|
|
* 位置代码
|
|
*/
|
|
private String locationCode;;
|
|
/**
|
|
* 需要冲孔未冲孔记录 0 否 1是
|
|
*/
|
|
private String isPuch;
|
|
|
|
/**
|
|
* $column.columnComment
|
|
*/
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
private Date inTime;
|
|
|
|
/**
|
|
* $column.columnComment
|
|
*/
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
private Date outTime;
|
|
|
|
|
|
}
|
|
|
|
|