| | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | |
| | | 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; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | @NotBlank(message = "记录名称不能为空") |
| | | private String name; |
| | | |
| | | @ApiModelProperty(value ="制表人id" ,required = true) |
| | | @TableField("tabulation_id") |
| | | @NotNull(message = "制表人id不能为空") |
| | | private Long tabulationId; |
| | | |
| | | @ApiModelProperty("制表人") |
| | | @TableField("tabulation_name") |
| | | private String tabulationName; |
| | | |
| | | @ApiModelProperty(value ="制表日期",required = true) |
| | | @TableField("tabulation_date") |
| | | @NotNull(message = "制表日期不能为空") |
| | | private LocalDateTime tabulationDate; |
| | | // @ApiModelProperty(value ="制表人id" ,required = true) |
| | | // @TableField("tabulation_id") |
| | | // @NotNull(message = "制表人id不能为空") |
| | | // private Long tabulationId; |
| | | // |
| | | // @ApiModelProperty("制表人") |
| | | // @TableField("tabulation_name") |
| | | // private String tabulationName; |
| | | // |
| | | // @ApiModelProperty(value ="制表日期",required = true) |
| | | // @TableField("tabulation_date") |
| | | // @NotNull(message = "制表日期不能为空") |
| | | // private LocalDateTime tabulationDate; |
| | | |
| | | @ApiModelProperty("删除标志(0为删除,1删除,默认0)") |
| | | @TableField("del_flag") |