| | |
| | | package com.consum.base.pojo.query; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | @ApiModelProperty(value = "物品模版名称") |
| | | private String goodsName; |
| | | /** |
| | | * 物品模版名称 |
| | | */ |
| | | @ApiModelProperty(value = "物品模版id") |
| | | private String baseGoodsId; |
| | | /** |
| | | * 机构 |
| | | */ |
| | | @ApiModelProperty(value = "机构") |
| | |
| | | @ApiModelProperty(value = "创建人") |
| | | private String createName; |
| | | /** |
| | | * 1=待入库;2=已入库 |
| | | * 采购入库 map.put("1" + "1", "1") |
| | | * 调拨入库 map.put("2" + "1", "2") |
| | | * 调拨出库 map.put("2" + "2", "3") |
| | | * 其他出库 map.put("3" + "1", "4") |
| | | * 其他出库 map.put("3" + "2", "5") |
| | | * 退还入库 map.put("4" + "1", "6") |
| | | * 申领出库 map.put("4" + "2", "7") |
| | | */ |
| | | @ApiModelProperty(value = "1=待入库;2=已入库") |
| | | @ApiModelProperty(value = "1采购入库 2退还入库 3调拨入库 4盘盈入库 5申领出库 6调拨出库 7盘亏出库 8报废出库 9其他出库") |
| | | private Integer states; |
| | | |
| | | /** |
| | | * 入库时间 开始 |
| | | */ |
| | | @ApiModelProperty(value = "开始时间") |
| | | @JsonFormat(pattern = "yyyyMMdd", timezone = "GMT+8") |
| | | private Long startTime; |
| | | /** |
| | | * 入库时间 结束 |
| | | */ |
| | | @ApiModelProperty(value = "结束时间") |
| | | @JsonFormat(pattern = "yyyyMMdd", timezone = "GMT+8") |
| | | private Long endTime; |
| | | /** |
| | | * 规格型号id |