青羊经侦大队-数据平台
11
baizonghao
2023-05-25 7ea5eece501c98a91555a5358931367e78e9d23b
src/main/java/com/example/jz/modle/entity/Cause.java
@@ -1,11 +1,11 @@
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 lombok.Data;
import java.io.Serializable;
import java.util.Date;
/**
 * 案件表(Cause)表实体类
@@ -25,13 +25,14 @@
    private Date firstTime;
    //创建时间
    private Date ctime;
    //状态 0未审核 1不予立案 2受理中 3已结案
    private String status;
    //状态  0立案 1初查 2受理 3移送起诉 4结案
    private Integer status;
    //负责人id
    private Integer userId;
    //案件描述
    private String description;
    private String totalMoney;
    public Integer getId() {
        return id;
@@ -73,13 +74,6 @@
        this.ctime = ctime;
    }
    public String getStatus() {
        return status;
    }
    public void setStatus(String status) {
        this.status = status;
    }
    public Integer getUserId() {
        return userId;
@@ -97,6 +91,14 @@
        this.description = description;
    }
    public String getTotalMoney() {
        return totalMoney;
    }
    public void setTotalMoney(String totalMoney) {
        this.totalMoney = totalMoney;
    }
    /**
     * 获取主键值
     *
@@ -106,5 +108,13 @@
    protected Serializable pkVal() {
        return this.id;
    }
    public Integer getStatus() {
        return status;
    }
    public void setStatus(Integer status) {
        this.status = status;
    }
}