Commit 6838caacbdb196901fe2c2baeeb783a565d2e473
1 parent
fd1eec4cad
Exists in
master
修改字段名
Showing 2 changed files with 6 additions and 8 deletions
parent/hospital.mac/src/main/java/com/lyms/hospital/entity/woman/WomanFetationRecord.java
View file @
6838caa
| ... | ... | @@ -168,12 +168,12 @@ |
| 168 | 168 | * 末次月经 |
| 169 | 169 | */ |
| 170 | 170 | @TableField(value="HOSPITAL_LAST_MENSTRUATION") |
| 171 | - private String hospitalLastMenstruation; | |
| 171 | + private Date hospitalLastMenstruation; | |
| 172 | 172 | /** |
| 173 | 173 | * 纠正末次月经 |
| 174 | 174 | */ |
| 175 | 175 | @TableField(value="HOSPITAL_CORRECT_LAST_MENSTRUATION") |
| 176 | - private String hospitalCorrectLastMenstruation; | |
| 176 | + private Date hospitalCorrectLastMenstruation; | |
| 177 | 177 | /** |
| 178 | 178 | * 预产期 |
| 179 | 179 | */ |
| 180 | 180 | |
| 181 | 181 | |
| 182 | 182 | |
| ... | ... | @@ -508,19 +508,19 @@ |
| 508 | 508 | this.contactPostpartumDetail = contactPostpartumDetail; |
| 509 | 509 | } |
| 510 | 510 | |
| 511 | - public String getHospitalLastMenstruation() { | |
| 511 | + public Date getHospitalLastMenstruation() { | |
| 512 | 512 | return hospitalLastMenstruation; |
| 513 | 513 | } |
| 514 | 514 | |
| 515 | - public void setHospitalLastMenstruation(String hospitalLastMenstruation) { | |
| 515 | + public void setHospitalLastMenstruation(Date hospitalLastMenstruation) { | |
| 516 | 516 | this.hospitalLastMenstruation = hospitalLastMenstruation; |
| 517 | 517 | } |
| 518 | 518 | |
| 519 | - public String getHospitalCorrectLastMenstruation() { | |
| 519 | + public Date getHospitalCorrectLastMenstruation() { | |
| 520 | 520 | return hospitalCorrectLastMenstruation; |
| 521 | 521 | } |
| 522 | 522 | |
| 523 | - public void setHospitalCorrectLastMenstruation(String hospitalCorrectLastMenstruation) { | |
| 523 | + public void setHospitalCorrectLastMenstruation(Date hospitalCorrectLastMenstruation) { | |
| 524 | 524 | this.hospitalCorrectLastMenstruation = hospitalCorrectLastMenstruation; |
| 525 | 525 | } |
| 526 | 526 |
parent/hospital.web/src/test/java/test/hospital/highrisk/HighriskMapsTest.java
View file @
6838caa
| ... | ... | @@ -6,8 +6,6 @@ |
| 6 | 6 | import com.lyms.base.common.entity.conf.HighriskMaps; |
| 7 | 7 | import com.lyms.base.common.service.conf.HighriskMapsService; |
| 8 | 8 | import com.lyms.util.StrUtils; |
| 9 | - | |
| 10 | -import antlr.StringUtils; | |
| 11 | 9 | import test.hospital.BaseServiceTest; |
| 12 | 10 | |
| 13 | 11 | public class HighriskMapsTest extends BaseServiceTest{ |