| | |
| | | package com.gkhy.exam.system.domain; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Getter; |
| | |
| | | |
| | | import javax.validation.constraints.NotBlank; |
| | | import javax.validation.constraints.NotNull; |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | @NotBlank(message = "编号不能为空") |
| | | private String number; |
| | | |
| | | @ApiModelProperty(value ="1、标准2、规范3、法律法规4、其他 5、质量服务标准",required = true) |
| | | @ApiModelProperty(value ="1、管理2、技术3、质量服务标准、4其他 ",required = true) |
| | | @TableField("knowledge_type") |
| | | @NotNull(message = "类型不能为空") |
| | | private Integer knowledgeType; |