| | |
| | | import javax.validation.constraints.NotBlank; |
| | | import javax.validation.constraints.NotNull; |
| | | import java.io.Serializable; |
| | | import java.time.LocalDate; |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | |
| | |
| | | @TableField("student_id") |
| | | private String studentId; |
| | | |
| | | @TableField("plan_id") |
| | | private Integer planId; |
| | | |
| | | // @NotBlank(message = "计划名称不能为空") |
| | | @ApiModelProperty(value = "计划名称",required = true) |
| | | @TableField("plan_name") |
| | |
| | | @TableField("course_name") |
| | | private String courseName; |
| | | |
| | | @ApiModelProperty(value = "培训时间") |
| | | @TableField("plan_date") |
| | | private LocalDate planDate; |
| | | |
| | | @NotNull(message = "培训等级不能为空") |
| | | @ApiModelProperty(value = "培训等级(1公司级 2部门级 3车间级 默认1)",required = true) |
| | | @TableField("level") |