Commit 7d00f1ea59249b69328f5ef9b3a104200dda09ec

Authored by changpengfei
1 parent 3d21f99402
Exists in master

update

Showing 1 changed file with 7 additions and 0 deletions

talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/PatientInfo.java View file @ 7d00f1e
... ... @@ -5,6 +5,8 @@
5 5 import com.baomidou.mybatisplus.annotation.TableId;
6 6 import com.baomidou.mybatisplus.annotation.TableName;
7 7 import java.io.Serializable;
  8 +import java.util.Date;
  9 +
8 10 import lombok.Data;
9 11  
10 12 /**
... ... @@ -130,6 +132,11 @@
130 132  
131 133 @TableField(value="headimg")
132 134 private String headimg;//患者头像
  135 +
  136 +
  137 + @TableField(value = "createdtime")
  138 + private Date createdtime;//病例创建时间
  139 +
133 140  
134 141  
135 142