You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
978 B
Java
53 lines
978 B
Java
1 year ago
|
package com.supervision.model;
|
||
|
|
||
|
import com.baomidou.mybatisplus.annotation.TableField;
|
||
|
import com.baomidou.mybatisplus.annotation.TableId;
|
||
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||
|
import java.io.Serializable;
|
||
|
import java.util.Date;
|
||
|
import lombok.Data;
|
||
|
|
||
|
/**
|
||
|
* 疾病处置计划关联表
|
||
1 year ago
|
* @TableName vp_disease_treatment_plan
|
||
1 year ago
|
*/
|
||
1 year ago
|
@TableName(value ="vp_disease_treatment_plan")
|
||
1 year ago
|
@Data
|
||
1 year ago
|
public class DiseaseTreatmentPlan implements Serializable {
|
||
|
|
||
|
@TableId
|
||
|
private String id;
|
||
|
|
||
1 year ago
|
/**
|
||
|
* 疾病id
|
||
|
*/
|
||
|
private String diseaseId;
|
||
|
|
||
|
/**
|
||
|
* 处置计划id
|
||
|
*/
|
||
|
private String planId;
|
||
|
|
||
|
/**
|
||
|
* 创建人ID
|
||
|
*/
|
||
|
private String createUserId;
|
||
|
|
||
|
/**
|
||
|
* 创建时间
|
||
|
*/
|
||
|
private Date createTime;
|
||
|
|
||
|
/**
|
||
|
* 更新人
|
||
|
*/
|
||
|
private String updateUserId;
|
||
|
|
||
|
/**
|
||
|
* 更新时间
|
||
|
*/
|
||
|
private Date updateTime;
|
||
|
|
||
|
@TableField(exist = false)
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
}
|