Commit 68ac3f637ec468201d552f0f21734821195eb582
1 parent
de85979394
Exists in
master
update
Showing 1 changed file with 7 additions and 1 deletions
talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/PatientInfo.java
View file @
68ac3f6
| ... | ... | @@ -8,6 +8,7 @@ |
| 8 | 8 | import java.util.Date; |
| 9 | 9 | |
| 10 | 10 | import lombok.Data; |
| 11 | +import org.springframework.format.annotation.DateTimeFormat; | |
| 11 | 12 | |
| 12 | 13 | /** |
| 13 | 14 | * |
| ... | ... | @@ -152,7 +153,12 @@ |
| 152 | 153 | */ |
| 153 | 154 | @TableField(exist = false) |
| 154 | 155 | private String synthesisQuery; |
| 155 | - | |
| 156 | + /** | |
| 157 | + * his系统就诊时间、就诊时间 | |
| 158 | + */ | |
| 159 | + @TableField(value = "created") | |
| 160 | + @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") | |
| 161 | + private Date created; | |
| 156 | 162 | |
| 157 | 163 | @TableField(exist = false) |
| 158 | 164 | private static final long serialVersionUID = 1L; |