From 320ed3f4782f9662f79ecfe14d2cf3f34dd288c5 Mon Sep 17 00:00:00 2001 From: whycq <10027870+whycq@user.noreply.gitee.com> Date: 星期二, 01 八月 2023 19:52:36 +0800 Subject: [PATCH] # --- src/main/java/zy/cloud/wms/manager/entity/Cstmr.java | 97 ------------------------------------------------ 1 files changed, 0 insertions(+), 97 deletions(-) diff --git a/src/main/java/zy/cloud/wms/manager/entity/Cstmr.java b/src/main/java/zy/cloud/wms/manager/entity/Cstmr.java index 977c23a..802ec5b 100644 --- a/src/main/java/zy/cloud/wms/manager/entity/Cstmr.java +++ b/src/main/java/zy/cloud/wms/manager/entity/Cstmr.java @@ -128,21 +128,7 @@ // null // 澶囨敞 // ); - public Long getId() { - return id; - } - public void setId(Long id) { - this.id = id; - } - - public Long getHostId() { - return hostId; - } - - public void setHostId(Long hostId) { - this.hostId = hostId; - } public String getHostId$(){ HostService service = SpringUtils.getBean(HostService.class); @@ -153,49 +139,6 @@ return null; } - public String getUuid() { - return uuid; - } - - public void setUuid(String uuid) { - this.uuid = uuid; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getContacts() { - return contacts; - } - - public void setContacts(String contacts) { - this.contacts = contacts; - } - - public String getTel() { - return tel; - } - - public void setTel(String tel) { - this.tel = tel; - } - - public String getAddr() { - return addr; - } - - public void setAddr(String addr) { - this.addr = addr; - } - - public Integer getStatus() { - return status; - } public String getStatus$(){ if (null == this.status){ return null; } @@ -209,13 +152,6 @@ } } - public void setStatus(Integer status) { - this.status = status; - } - - public Long getCreateBy() { - return createBy; - } public String getCreateBy$(){ UserService service = SpringUtils.getBean(UserService.class); @@ -226,14 +162,6 @@ return null; } - public void setCreateBy(Long createBy) { - this.createBy = createBy; - } - - public Date getCreateTime() { - return createTime; - } - public String getCreateTime$(){ if (Cools.isEmpty(this.createTime)){ return ""; @@ -241,13 +169,7 @@ return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.createTime); } - public void setCreateTime(Date createTime) { - this.createTime = createTime; - } - public Long getUpdateBy() { - return updateBy; - } public String getUpdateBy$(){ UserService service = SpringUtils.getBean(UserService.class); @@ -258,13 +180,7 @@ return null; } - public void setUpdateBy(Long updateBy) { - this.updateBy = updateBy; - } - public Date getUpdateTime() { - return updateTime; - } public String getUpdateTime$(){ if (Cools.isEmpty(this.updateTime)){ @@ -272,18 +188,5 @@ } return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.updateTime); } - - public void setUpdateTime(Date updateTime) { - this.updateTime = updateTime; - } - - public String getMemo() { - return memo; - } - - public void setMemo(String memo) { - this.memo = memo; - } - } -- Gitblit v1.9.1