ComEvaluationStandard.java 1.06 KB
package com.yiboshi.science.entity;

import com.yiboshi.science.base.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.hibernate.validator.constraints.Length;

@Data
@EqualsAndHashCode(callSuper=true)
@ApiModel(description = "评审标准表")
public class ComEvaluationStandard extends BaseEntity {

    /** 标题 */
    @ApiModelProperty(value = "评审表名称", position = 1)
    @Length(max=200, message = "评审表名称不能大于200")
    private String name;
    /** 年度批次Id */
    @ApiModelProperty(value = "年度批次Id", position = 2)
    @Length(max=36, message = "年度批次Id不能大于36")
    private String batchId;
    /** 专家组Id */
    @ApiModelProperty(value = "专家组Id", position = 6)
    @Length(max=36, message = "专家组Id不能大于36")
    private String groupId;
    /** 备注 */
    @ApiModelProperty(value = "备注", position = 3)
    @Length(max=200, message = "备注不能大于200")
    private String remark;
}