From 81a3369395a7cccceb7cd36f5238cc6fe2aa88e5 Mon Sep 17 00:00:00 2001 From: 935090232@qq.com <ak473600000> Date: Fri, 19 Mar 2021 00:22:01 +0800 Subject: [PATCH] 优化代码 --- zq-erp/src/main/java/com/matrix/system/hive/bean/SysProjUse.java | 41 ++++++++++++++++++++++++++++++++++++++++- 1 files changed, 40 insertions(+), 1 deletions(-) diff --git a/zq-erp/src/main/java/com/matrix/system/hive/bean/SysProjUse.java b/zq-erp/src/main/java/com/matrix/system/hive/bean/SysProjUse.java index de7706a..94b8b15 100644 --- a/zq-erp/src/main/java/com/matrix/system/hive/bean/SysProjUse.java +++ b/zq-erp/src/main/java/com/matrix/system/hive/bean/SysProjUse.java @@ -2,7 +2,9 @@ import com.fasterxml.jackson.annotation.JsonFormat; import com.matrix.core.anotations.Extend; +import com.matrix.core.pojo.EntityDTO; import com.matrix.core.tools.DateUtil; +import com.matrix.system.common.bean.EntityDTOExt; import org.springframework.format.annotation.DateTimeFormat; import java.io.Serializable; @@ -13,7 +15,7 @@ /** * @date 2016-07-03 20:53 */ -public class SysProjUse implements Serializable { +public class SysProjUse extends EntityDTO { private static final long serialVersionUID = 1L; @@ -47,6 +49,9 @@ @JsonFormat(pattern = DateUtil.DATE_FORMAT_DD, timezone = "GMT+8") @DateTimeFormat(pattern = DateUtil.DATE_FORMAT_DD) private Date failTime; + + + private Date targetFailTime; /** * 套餐id */ @@ -56,6 +61,12 @@ * 订单明细id 不明确 */ private Long orderItemId; + + /** + * 订单id + */ + @Extend + private Long orderId; /** * 单次扣减金额(理解为单次手工业绩) @@ -129,6 +140,34 @@ private String queryKey; + @Extend + private String updateRemark; + + + public Long getOrderId() { + return orderId; + } + + public void setOrderId(Long orderId) { + this.orderId = orderId; + } + + public String getUpdateRemark() { + return updateRemark; + } + + public void setUpdateRemark(String updateRemark) { + this.updateRemark = updateRemark; + } + + public Date getTargetFailTime() { + return targetFailTime; + } + + public void setTargetFailTime(Date targetFailTime) { + this.targetFailTime = targetFailTime; + } + public String getQueryKey() { return queryKey; } -- Gitblit v1.9.1