| | |
| | | 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)表实体类 |
| | |
| | | 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; |
| | |
| | | this.ctime = ctime; |
| | | } |
| | | |
| | | public String getStatus() { |
| | | return status; |
| | | } |
| | | |
| | | public void setStatus(String status) { |
| | | this.status = status; |
| | | } |
| | | |
| | | public Integer getUserId() { |
| | | return userId; |
| | |
| | | this.description = description; |
| | | } |
| | | |
| | | public String getTotalMoney() { |
| | | return totalMoney; |
| | | } |
| | | |
| | | public void setTotalMoney(String totalMoney) { |
| | | this.totalMoney = totalMoney; |
| | | } |
| | | |
| | | /** |
| | | * 获取主键值 |
| | | * |
| | |
| | | protected Serializable pkVal() { |
| | | return this.id; |
| | | } |
| | | |
| | | public Integer getStatus() { |
| | | return status; |
| | | } |
| | | |
| | | public void setStatus(Integer status) { |
| | | this.status = status; |
| | | } |
| | | } |
| | | |