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;
|
|
/**
|
* 案件表(Cause)表实体类
|
*
|
* @author makejava
|
* @since 2022-07-13 11:52:57
|
*/
|
@TableName("qyjz.cause")
|
public class Cause extends Model<Cause> {
|
//id
|
private Integer id;
|
//案件编号
|
private String number;
|
//案件名称
|
private String name;
|
//第一次案发时间
|
private Date firstTime;
|
//创建时间
|
private Date ctime;
|
//状态 0未审核 1不予立案 2受理中 3已结案
|
private String status;
|
//负责人id
|
private Integer userId;
|
//案件描述
|
private String description;
|
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getNumber() {
|
return number;
|
}
|
|
public void setNumber(String number) {
|
this.number = number;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public Date getFirstTime() {
|
return firstTime;
|
}
|
|
public void setFirstTime(Date firstTime) {
|
this.firstTime = firstTime;
|
}
|
|
public Date getCtime() {
|
return ctime;
|
}
|
|
public void setCtime(Date ctime) {
|
this.ctime = ctime;
|
}
|
|
public String getStatus() {
|
return status;
|
}
|
|
public void setStatus(String status) {
|
this.status = status;
|
}
|
|
public Integer getUserId() {
|
return userId;
|
}
|
|
public void setUserId(Integer userId) {
|
this.userId = userId;
|
}
|
|
public String getDescription() {
|
return description;
|
}
|
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
|
/**
|
* 获取主键值
|
*
|
* @return 主键值
|
*/
|
@Override
|
protected Serializable pkVal() {
|
return this.id;
|
}
|
}
|