| | |
| | | @Schema(description = "计量单位名称", example = "个") |
| | | private String unitMeasureName; |
| | | |
| | | @Schema(description = "辅单位1编号", example = "2") |
| | | private Long unitMeasureId2; |
| | | |
| | | @Schema(description = "辅单位1名称") |
| | | private String unitMeasureName2; |
| | | |
| | | @Schema(description = "辅单位1换算比率", example = "12") |
| | | private BigDecimal unitMeasureRate1; |
| | | |
| | | @Schema(description = "辅单位2编号", example = "3") |
| | | private Long unitMeasureId3; |
| | | |
| | | @Schema(description = "辅单位2名称") |
| | | private String unitMeasureName3; |
| | | |
| | | @Schema(description = "辅单位2换算比率", example = "100") |
| | | private BigDecimal unitMeasureRate2; |
| | | |
| | | @Schema(description = "默认仓库编号", example = "1") |
| | | private Long warehouseId; |
| | | |
| | | @Schema(description = "默认仓库编码", example = "WH001") |
| | | private String warehouseCode; |
| | | |
| | | @Schema(description = "默认仓库名称", example = "原料仓") |
| | | private String warehouseName; |
| | | |
| | | @Schema(description = "品牌编号", example = "1") |
| | | private Long brandId; |
| | | |
| | |
| | | private BigDecimal maxStock; |
| | | |
| | | @Schema(description = "保质期天数", example = "365") |
| | | private Integer expiryDays; |
| | | private Integer expiryDay; |
| | | |
| | | @Schema(description = "是否批次管理", example = "false") |
| | | private Boolean isBatchManaged; |
| | | |
| | | // ==================== 批次属性配置 ==================== |
| | | |
| | | @Schema(description = "生产日期", example = "false") |
| | | private Boolean produceDateFlag; |
| | | |
| | | @Schema(description = "有效期", example = "false") |
| | | private Boolean expireDateFlag; |
| | | |
| | | @Schema(description = "入库日期", example = "false") |
| | | private Boolean receiptDateFlag; |
| | | |
| | | @Schema(description = "供应商", example = "false") |
| | | private Boolean vendorFlag; |
| | | |
| | | @Schema(description = "采购订单编号", example = "false") |
| | | private Boolean purchaseOrderCodeFlag; |
| | | |
| | | @Schema(description = "生产批号", example = "false") |
| | | private Boolean lotNumberFlag; |
| | | |
| | | @Schema(description = "质量状态", example = "false") |
| | | private Boolean qualityStatusFlag; |
| | | |
| | | @Schema(description = "是否高值物料", example = "false") |
| | | private Boolean isHighValue; |
| | | |