From 5cf7fe680122f247c6d15fa70aa49256a3f33bce Mon Sep 17 00:00:00 2001 From: lsh <lsh@163.com> Date: 星期二, 17 十二月 2024 11:28:20 +0800 Subject: [PATCH] # --- src/main/java/com/zy/asrs/entity/LocDetl.java | 28 ++++++++++++++++++++++++++-- 1 files changed, 26 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/zy/asrs/entity/LocDetl.java b/src/main/java/com/zy/asrs/entity/LocDetl.java index 7e157b8..8d649da 100644 --- a/src/main/java/com/zy/asrs/entity/LocDetl.java +++ b/src/main/java/com/zy/asrs/entity/LocDetl.java @@ -7,6 +7,7 @@ import com.core.common.Cools; import com.core.common.SpringUtils; import com.zy.asrs.service.LocMastService; +import com.zy.asrs.service.LocOwnerService; import com.zy.common.utils.Synchro; import com.zy.system.entity.User; import com.zy.system.service.UserService; @@ -102,7 +103,7 @@ private Double weight; @ApiModelProperty(value= "闀垮害") - private Double length; + private Double man_length; @ApiModelProperty(value= "浣撶Н") private Double volume; @@ -158,6 +159,12 @@ @ApiModelProperty(value= "澶囨敞") private String memo; + /** + * 鎷ユ湁鑰� + */ + @ApiModelProperty(value= "鎷ユ湁鑰� 1: 鏉板厠 ") + private Integer owner; + public String getLocNo$(){ LocMastService service = SpringUtils.getBean(LocMastService.class); LocMast locMast = service.selectById(this.locNo); @@ -166,7 +173,14 @@ } return null; } - + public String getOwner$(){ + LocOwnerService service = SpringUtils.getBean(LocOwnerService.class); + LocOwner locOwner = service.selectById(this.owner); + if (!Cools.isEmpty(locOwner)){ + return String.valueOf(locOwner.getOwner()); + } + return null; + } public String getBeBatch$(){ if (null == this.beBatch){ return null; } switch (this.beBatch){ @@ -249,6 +263,16 @@ return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.appeTime); } + public long getStoreDate(){ + long timeNow = new Date().getTime(); + if (this.appeTime == null){ + return 0; + } + long timeCreate = this.appeTime.getTime(); + + return (timeNow - timeCreate) /24/60/60/1000; + } + public void sync(Object source) { Synchro.Copy(source, this); } -- Gitblit v1.9.1