| | |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import jakarta.validation.constraints.NotEmpty; |
| | | import jakarta.validation.constraints.NotNull; |
| | | import lombok.*; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | @TableName(value="plt_product", autoResultMap = true) |
| | | @Data |
| | |
| | | /** |
| | | * 技术负责人 |
| | | */ |
| | | public Long director; |
| | | |
| | | @TableField(exist = false) |
| | | public String directorName; |
| | | public String director; |
| | | |
| | | /** |
| | | * 技术负责人手机号 |
| | |
| | | */ |
| | | public String remark; |
| | | |
| | | @NotNull(message = "技术参数不能为空") |
| | | public List<PltProductParams> params; |
| | | |
| | | /** |
| | | * 文件类型:01:工艺文件,02:用户手册,03:物料清单 |
| | | */ |
| | | @NotNull(message = "工艺文件不能为空") |
| | | public List<PltProductFile> processDocuments; |
| | | |
| | | @NotNull(message = "用户手册不能为空") |
| | | public List<PltProductFile> userManual; |
| | | |
| | | @NotNull(message = "物料清单不能为空") |
| | | public List<PltProductFile> materials; |
| | | |
| | | |
| | | } |