luofl
2025-02-23 5b67a8fa50c69a53a8aefacd4d822ef6ae06a994
springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/model/entity/ComplaintFlow.java
@@ -1,5 +1,6 @@
package com.panzhihua.sangeshenbian.model.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.TableId;
@@ -31,24 +32,29 @@
    private static final long serialVersionUID = 1L;
    @ApiModelProperty(value = "主键ID")
    @TableId(value = "id")
    private Integer id;
    @TableId(value = "id",type = IdType.ASSIGN_ID)
    private Long id;
    @ApiModelProperty(value = "主键ID")
    @TableId(value = "complaint_id")
    private Long complaintId;
    @ApiModelProperty(value = "处理层级: 0-社区 1-街道 2-区/县 3市")
    @TableField("level")
    private Boolean level;
    private Integer level;
    @ApiModelProperty(value = "处理单位名称")
    @TableField("name")
    private String name;
    @ApiModelProperty(value = "下派时间")
    @TableField("dispatch_time")
    private Date dispatchTime;
    @TableField("create_time")
    private Date createTime;
    @ApiModelProperty(value = "处理状态:0-未处理 1-已处理")
    @TableField("status")
    private Boolean status;
    @ApiModelProperty(value = "流转类型 0-上报 1-下派")
    @TableField("type")
    private Integer type;
}