From 6e783f279e7b1dd1f0fc243d7d8504ede0b25870 Mon Sep 17 00:00:00 2001
From: jyy <jyy>
Date: Sun, 27 Jun 2021 15:47:57 +0800
Subject: [PATCH] 修复业绩bug1

---
 zq-erp/src/main/java/com/matrix/system/hive/bean/SysProjUseFlow.java |  112 ++------------------------------------------------------
 1 files changed, 4 insertions(+), 108 deletions(-)

diff --git a/zq-erp/src/main/java/com/matrix/system/hive/bean/SysProjUseFlow.java b/zq-erp/src/main/java/com/matrix/system/hive/bean/SysProjUseFlow.java
index 932fffb..5c23ed7 100644
--- a/zq-erp/src/main/java/com/matrix/system/hive/bean/SysProjUseFlow.java
+++ b/zq-erp/src/main/java/com/matrix/system/hive/bean/SysProjUseFlow.java
@@ -4,19 +4,18 @@
 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 io.swagger.annotations.ApiModelProperty;
+import lombok.Builder;
+import lombok.Data;
+import lombok.NoArgsConstructor;
 import org.springframework.format.annotation.DateTimeFormat;
 
-import javax.validation.constraints.NotBlank;
-import java.io.Serializable;
 import java.util.Date;
-import java.util.List;
 
 
 /**项目余次操作记录
  * @date 2016-07-03 20:53
  */
+@Data
 public class SysProjUseFlow extends EntityDTO {
 
     private static final long serialVersionUID = 1L;
@@ -94,107 +93,4 @@
     @Extend
     private String endTime;
 
-    public String getBeginTime() {
-        return beginTime;
-    }
-
-    public void setBeginTime(String beginTime) {
-        this.beginTime = beginTime;
-    }
-
-    public String getEndTime() {
-        return endTime;
-    }
-
-    public void setEndTime(String endTime) {
-        this.endTime = endTime;
-    }
-
-    public Long getId() {
-        return id;
-    }
-
-    public void setId(Long id) {
-        this.id = id;
-    }
-
-    public Long getProjUseId() {
-        return projUseId;
-    }
-
-    public void setProjUseId(Long projUseId) {
-        this.projUseId = projUseId;
-    }
-
-    public Integer getSurplusCount() {
-        return surplusCount;
-    }
-
-    public void setSurplusCount(Integer surplusCount) {
-        this.surplusCount = surplusCount;
-    }
-
-    public String getIsOver() {
-        return isOver;
-    }
-
-    public void setIsOver(String isOver) {
-        this.isOver = isOver;
-    }
-
-    public Date getFailTime() {
-        return failTime;
-    }
-
-    public void setFailTime(Date failTime) {
-        this.failTime = failTime;
-    }
-
-    public Double getPrice() {
-        return price;
-    }
-
-    public void setPrice(Double price) {
-        this.price = price;
-    }
-
-    public String getStatus() {
-        return status;
-    }
-
-    public void setStatus(String status) {
-        this.status = status;
-    }
-
-    public Double getBalance() {
-        return balance;
-    }
-
-    public void setBalance(Double balance) {
-        this.balance = balance;
-    }
-
-    public String getRemark() {
-        return remark;
-    }
-
-    public void setRemark(String remark) {
-        this.remark = remark;
-    }
-
-    public String getProjName() {
-        return projName;
-    }
-
-    public void setProjName(String projName) {
-        this.projName = projName;
-    }
-
-    public String getOptionType() {
-        return optionType;
-    }
-
-    public void setOptionType(String optionType) {
-        this.optionType = optionType;
-    }
 }

--
Gitblit v1.9.1