| | |
| | | /** |
| | | * 产品状态 |
| | | */ |
| | | @TableField(exist = false) |
| | | @Schema(description = "入库审核状态") |
| | | private String stockInApprovalStatus; |
| | | |
| | | // @TableField(exist = false) |
| | | @Schema(description = "产品状态:1-充足") |
| | | private Integer approveStatus; |
| | |
| | | //针对销售台账,是否生产 |
| | | private Boolean isProduction; |
| | | |
| | | @Schema(description = "产品类型 1-产品 2-设备备件") |
| | | private Integer productType; |
| | | |
| | | @TableField(exist = false) |
| | | @Schema(description = "待发货数量") |
| | | private BigDecimal noQuantity; |
| | | |
| | | @Schema(description = "设备ID(关联设备台账,筛选is_iot_device=1)") |
| | | private Long deviceId; |
| | | |
| | | @TableField(exist = false) |
| | | @Schema(description = "设备名称") |
| | | private String deviceName; |
| | | |
| | | @Schema(description = "库位(来源于设备的storage_location)") |
| | | private String storageLocation; |
| | | } |