| | |
| | | import lombok.Builder; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import lombok.experimental.Accessors; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * @author 江苏鵷雏网络科技有限公司 |
| | | * @since 2023-07-17 |
| | | */ |
| | | @Accessors(chain = true) |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = false) |
| | | @ApiModel(value="Material对象", description="") |
| | |
| | | |
| | | @ApiModelProperty(value = "物料id", hidden = true) |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private String id; |
| | | private Integer id; |
| | | |
| | | @ApiModelProperty(value = "物料编码", example = "152453211563212", required = true) |
| | | @ApiModelProperty(value = "物料编码", hidden = true) |
| | | private String code; |
| | | |
| | | @ApiModelProperty(value = "物料名称", example = "石头", required = true) |