| | |
| | | * 物品模版名称 |
| | | */ |
| | | @ApiModelProperty(value = "物品模版名称") |
| | | private String goodsTemplateName; |
| | | private String goodsName; |
| | | /** |
| | | * 机构 |
| | | */ |
| | |
| | | @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=调拨入库,") |
| | | private Integer states; |
| | | |
| | | /** |