From 9c791d431038fe79a111805762ee2f42c96b51c5 Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Mon, 08 Nov 2021 17:03:15 +0800 Subject: [PATCH] fix --- zq-erp/src/main/java/com/matrix/system/app/vo/ServiceProjVo.java | 19 +++++++++++++++---- 1 files changed, 15 insertions(+), 4 deletions(-) diff --git a/zq-erp/src/main/java/com/matrix/system/app/vo/ServiceProjVo.java b/zq-erp/src/main/java/com/matrix/system/app/vo/ServiceProjVo.java index d0fd4d8..c9b6e8b 100644 --- a/zq-erp/src/main/java/com/matrix/system/app/vo/ServiceProjVo.java +++ b/zq-erp/src/main/java/com/matrix/system/app/vo/ServiceProjVo.java @@ -23,6 +23,9 @@ @ApiModelProperty(value = "商品名称") private String name; + @ApiModelProperty(value = "套餐来源,转让,购买") + private String source; + @ApiModelProperty(value = "时长") private Integer timeLength; @@ -127,15 +130,23 @@ } } + public void setStatus(String status) { + this.status = status; + } + + public String getSource() { + return source; + } + + public void setSource(String source) { + this.source = source; + } + public Double getBalance() { return balance; } public void setBalance(Double balance) { this.balance = balance; - } - - public void setStatus(String status) { - this.status = status; } } -- Gitblit v1.9.1