| | |
| | | /**库存类型*/ |
| | | @Excel(name = "库存类型", width = 15) |
| | | @ApiModelProperty(value = "库存类型") |
| | | @Dict(dicCode = "material_inventory_category") |
| | | private String inventoryCategory; |
| | | /**数量*/ |
| | | @Excel(name = "数量", width = 15) |
| | | @ApiModelProperty(value = "数量") |
| | | private BigDecimal quantity; |
| | | /**库存地ID*/ |
| | | @Excel(name = "库存地ID", width = 15) |
| | | @Excel(name = "库存地", width = 15) |
| | | @Dict(dictTable = "base_line_side_warehouse", dicCode = "id", dicText = "warehouse_name") |
| | | @ApiModelProperty(value = "库存地ID") |
| | | private String warehouseId; |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "库存地") |
| | | private String warehouseName; |
| | | private String warehouseId; |
| | | /**库存状态*/ |
| | | @Excel(name = "库存状态", width = 15) |
| | | @ApiModelProperty(value = "库存状态") |
| | | @Dict(dicCode = "material_inventory_status") |
| | | private String inventoryStatus; |
| | | |
| | | public LswMaterialInventory(){} |