Commit 439ac382189fa677cf1fdf37dfb76c4d76cff685

Authored by jiangjiazhi
1 parent 8c89d906b8

增加权限

Showing 3 changed files with 60 additions and 1 deletions

platform-dal/src/main/java/com/lyms/platform/pojo/BabyModel.java View file @ 439ac38
... ... @@ -30,6 +30,25 @@
30 30 @Field("parentid")
31 31 private String parentId;
32 32  
  33 + private Date created;
  34 + private Date modified;
  35 +
  36 + public Date getCreated() {
  37 + return created;
  38 + }
  39 +
  40 + public void setCreated(Date created) {
  41 + this.created = created;
  42 + }
  43 +
  44 + public Date getModified() {
  45 + return modified;
  46 + }
  47 +
  48 + public void setModified(Date modified) {
  49 + this.modified = modified;
  50 + }
  51 +
33 52 public String getAddress() {
34 53 return address;
35 54 }
platform-dal/src/main/java/com/lyms/platform/pojo/BabyVisitModel.java View file @ 439ac38
... ... @@ -29,6 +29,9 @@
29 29 */
30 30 private static final long serialVersionUID = 1L;
31 31  
  32 + private Date created;
  33 + private Date modified;
  34 +
32 35 /**
33 36 * 新生儿的id
34 37 */
... ... @@ -46,7 +49,23 @@
46 49 @Id
47 50 private String id;
48 51  
49   - /* // 名称
  52 + public Date getCreated() {
  53 + return created;
  54 + }
  55 +
  56 + public void setCreated(Date created) {
  57 + this.created = created;
  58 + }
  59 +
  60 + public Date getModified() {
  61 + return modified;
  62 + }
  63 +
  64 + public void setModified(Date modified) {
  65 + this.modified = modified;
  66 + }
  67 +
  68 + /* // 名称
50 69 private String name;
51 70  
52 71 // 编号
platform-dal/src/main/java/com/lyms/platform/pojo/VisitModel.java View file @ 439ac38
... ... @@ -4,6 +4,8 @@
4 4  
5 5 import com.lyms.platform.common.result.BaseModel;
6 6  
  7 +import java.util.Date;
  8 +
7 9 /**
8 10 * 访视记录模型
9 11 *
... ... @@ -17,6 +19,9 @@
17 19 */
18 20 private static final long serialVersionUID = 1L;
19 21  
  22 + private Date created;
  23 + private Date modified;
  24 +
20 25 /**
21 26 * 患者id
22 27 */
... ... @@ -270,6 +275,22 @@
270 275  
271 276 public void setXinType(int xinType) {
272 277 this.xinType = xinType;
  278 + }
  279 +
  280 + public Date getCreated() {
  281 + return created;
  282 + }
  283 +
  284 + public void setCreated(Date created) {
  285 + this.created = created;
  286 + }
  287 +
  288 + public Date getModified() {
  289 + return modified;
  290 + }
  291 +
  292 + public void setModified(Date modified) {
  293 + this.modified = modified;
273 294 }
274 295 }