青羊经侦大队-数据平台
baizonghao
2023-03-03 c3312eb275fe12978afc8058b41ba32d35c7ffed
src/main/java/com/example/jz/modle/entity/Cause.java
@@ -1,11 +1,10 @@
package com.example.jz.modle.entity;
import java.util.Date;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.extension.activerecord.Model;
import java.io.Serializable;
import java.util.Date;
/**
 * 案件表(Cause)表实体类
@@ -26,12 +25,13 @@
    //创建时间
    private Date ctime;
    //状态 0未审核 1不予立案 2受理中 3已结案
    private String status;
    private Integer status;
    //负责人id
    private Integer userId;
    //案件描述
    private String description;
    private String totalMoney;
    public Integer getId() {
        return id;
@@ -73,13 +73,6 @@
        this.ctime = ctime;
    }
    public String getStatus() {
        return status;
    }
    public void setStatus(String status) {
        this.status = status;
    }
    public Integer getUserId() {
        return userId;
@@ -97,6 +90,14 @@
        this.description = description;
    }
    public String getTotalMoney() {
        return totalMoney;
    }
    public void setTotalMoney(String totalMoney) {
        this.totalMoney = totalMoney;
    }
    /**
     * 获取主键值
     *
@@ -106,5 +107,13 @@
    protected Serializable pkVal() {
        return this.id;
    }
    public Integer getStatus() {
        return status;
    }
    public void setStatus(Integer status) {
        this.status = status;
    }
}