| | |
| | | package com.finance.system.dto; |
| | | |
| | | import com.finance.common.enums.QuestionTypeEnum; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotBlank; |
| | | import java.io.Serializable; |
| | | import javax.validation.constraints.NotBlank; |
| | | import javax.validation.constraints.NotNull; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * @author mitao |
| | |
| | | @Data |
| | | @ApiModel(value = "发现问题数据传输对象") |
| | | public class QuestionDTO implements Serializable { |
| | | |
| | | private static final long serialVersionUID = -8074469734465858811L; |
| | | @ApiModelProperty(value = "问题标题") |
| | | @NotBlank(message = "问题标题不能为空") |
| | | private String title; |
| | | |
| | | @ApiModelProperty(value = "问题内容") |
| | | @NotBlank(message = "问题内容不能为空") |
| | | private String content; |
| | | |
| | | @ApiModelProperty(value = "问题类型", notes = "问题类型 1:减税降费政策未落实情况 2:其他重大财税政策 " |
| | | + "3:三保支出保障情况4:盘活存量资金5:无预算、超预算拨款6:直达资金规范使用7:隐形债务化解" |
| | | + "8:债务日常监管9:日常监管发现问题") |
| | | @NotNull(message = "问题内容不能为空") |
| | | private QuestionTypeEnum type; |
| | | |
| | | @ApiModelProperty("区划代码") |
| | | @NotBlank(message = "区划代码不能为空") |
| | | private String deptAreaCode; |
| | | } |