| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.baomidou.mybatisplus.extension.activerecord.Model; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | |
| | | private Date firstTime; |
| | | //创建时间 |
| | | private Date ctime; |
| | | //状态 0未审核 1不予立案 2受理中 3已结案 |
| | | //状态 0立案 1初查 2受理 3移送起诉 4结案 |
| | | private Integer status; |
| | | //负责人id |
| | | private Integer userId; |
| | | //案件描述 |
| | | private String description; |
| | | |
| | | private String totalMoney; |
| | | |
| | | public Integer getId() { |
| | | return id; |
| | |
| | | this.description = description; |
| | | } |
| | | |
| | | public String getTotalMoney() { |
| | | return totalMoney; |
| | | } |
| | | |
| | | public void setTotalMoney(String totalMoney) { |
| | | this.totalMoney = totalMoney; |
| | | } |
| | | |
| | | /** |
| | | * 获取主键值 |
| | | * |