1.
luofl
2025-02-23 e5ca6b1d9e961d51cb607e34ad259f7495d917e0
springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/model/entity/ComplaintAuditRecord.java
@@ -30,7 +30,7 @@
    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 = "诉求id")
@@ -43,11 +43,15 @@
    @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")