| | |
| | | package com.finance.system.dto.update; |
| | | |
| | | import com.finance.common.enums.QuestionTypeEnum; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import java.io.Serializable; |
| | |
| | | @ApiModelProperty(value = "id") |
| | | @NotNull(message = "id不能为空") |
| | | private Long id; |
| | | |
| | | @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; |
| | | } |