| | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import liquibase.pro.packaged.S; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | |
| | | @ApiModelProperty(value = "文章id", example = "") |
| | | @TableField("article_id") |
| | | private Integer articleId; |
| | | |
| | | /** 最多可选数量 */ |
| | | @ApiModelProperty(value = "最多可选数量", example = "") |
| | | @TableField("option_number") |
| | | private Integer optionNumber; |
| | | |
| | | /** 必选:1:否 2:是 */ |
| | | @ApiModelProperty(value = "必选:1:否 2:是", example = "") |
| | | @TableField("mandatory_flag") |
| | | private Integer mandatoryFlag; |
| | | |
| | | /** 附件 */ |
| | | @ApiModelProperty(value = "附件", example = "") |
| | | @TableField("attachment") |
| | | private String attachment; |
| | | |
| | | /** 最少可选数量 */ |
| | | @ApiModelProperty(value = "最少可选数量", example = "") |
| | | @TableField("option_number_min") |
| | | private Integer optionNumberMin; |
| | | |
| | | } |
| | | |