package com.consum.base.pojo;
|
|
import com.walker.web.param.ParamRequest;
|
import io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
|
@Data
|
@ApiModel(value = "盘点单条件参数")
|
public class LWhFormInventoryParam extends ParamRequest {
|
|
private Long id;
|
/**
|
* 盘点单号
|
*/
|
private String businessFormCode;
|
/**
|
* 盘点单名
|
*/
|
private String businessFormName;
|
/**
|
* 仓库编号
|
*/
|
private Long warehouseId;
|
/**
|
* 操作人
|
*/
|
private Long operatorUserId;
|
/**
|
* 监盘人
|
*/
|
private Long monitorUserId;
|
|
/**
|
* 盘点时间 开始
|
*/
|
private Long startTime;
|
/**
|
* 盘点时间 结束
|
*/
|
private Long endTime;
|
/**
|
* 机构id
|
*/
|
private Long agencyId;
|
/**
|
* 物品名称
|
*/
|
private String goodsTemplateName;
|
/**
|
* 规格型号id
|
*/
|
private Long baseGoodsModelsId;
|
/**
|
* 类型(出入库类型) 2=盘盈;3=盘亏
|
*/
|
private Integer inventoryResult;
|
/**
|
* 出入库单号
|
*/
|
private Long warehouseFormCode;
|
/**
|
* 盘点人
|
*/
|
private String operatorName;
|
/**
|
* 时间(盘点结束时间) 开始
|
*/
|
private Long stopTimeStart;
|
/**
|
* 时间(盘点结束时间) 结束
|
*/
|
private Long stopTimeEnd;
|
|
private Integer pageSize = 10;
|
private Integer pageNum = 1;
|
|
|
}
|