| | |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | |
| | | import com.gkhy.assess.common.domain.BaseEntity; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Getter; |
| | |
| | | @Setter |
| | | @TableName("ass_project_supplement") |
| | | @ApiModel(value = "AssProjectSupplement对象", description = "项目补录表") |
| | | public class AssProjectSupplement implements Serializable { |
| | | public class AssProjectSupplement extends BaseEntity { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | |
| | | @ApiModelProperty("乐观锁") |
| | | @TableField("version") |
| | | private Integer version; |
| | | |
| | | @ApiModelProperty("创建人") |
| | | @TableField("create_by") |
| | | private String createBy; |
| | | |
| | | @ApiModelProperty("创建时间") |
| | | @TableField("create_time") |
| | | private LocalDateTime createTime; |
| | | |
| | | @ApiModelProperty("更新人") |
| | | @TableField("update_by") |
| | | private String updateBy; |
| | | |
| | | @ApiModelProperty("更新时间") |
| | | @TableField("update_time") |
| | | private LocalDateTime updateTime; |
| | | |
| | | @ApiModelProperty("备注") |
| | | @TableField("remark") |
| | | private String remark; |
| | | |
| | | @NotEmpty(message = "附件列表不能为空") |
| | | @ApiModelProperty(value = "附件列表",required = true) |