| | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @ApiModelProperty(value = "主键") |
| | | @TableId(value = "id", type = IdType.NONE) |
| | | @TableId(value = "id", type = IdType.ASSIGN_ID) |
| | | private Long id; |
| | | |
| | | @ApiModelProperty(value = "是否最新") |
| | | @TableField("latest_flag") |
| | | private Boolean latestFlag; |
| | | |
| | | @ApiModelProperty(value = "诉求id") |
| | | @TableField("complaint_id") |
| | |
| | | |
| | | @ApiModelProperty(value = "审核类型(1:延期申请, 2:上报申请)") |
| | | @TableField("audit_type") |
| | | private Boolean auditType; |
| | | private Integer auditType; |
| | | |
| | | @ApiModelProperty(value = "审核状态 (0:待审核 1:审核通过 2:审核驳回)") |
| | | @TableField("audit_status") |
| | | private Boolean auditStatus; |
| | | private Integer auditStatus; |
| | | |
| | | @ApiModelProperty(value = "驳回原因") |
| | | @TableField("reject_reason") |
| | | private String rejectReason; |
| | | |
| | | @ApiModelProperty(value = "上报说明/延期申请说明") |
| | | @TableField("comment") |