From a330741b1ab67955217644c41d4ff38329f6c9b3 Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Thu, 31 Dec 2020 14:52:49 +0800 Subject: [PATCH] modify --- zq-erp/src/main/java/com/matrix/system/app/dto/BusinessesDto.java | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/zq-erp/src/main/java/com/matrix/system/app/dto/BusinessesDto.java b/zq-erp/src/main/java/com/matrix/system/app/dto/BusinessesDto.java index 873261c..0e5cf41 100644 --- a/zq-erp/src/main/java/com/matrix/system/app/dto/BusinessesDto.java +++ b/zq-erp/src/main/java/com/matrix/system/app/dto/BusinessesDto.java @@ -16,6 +16,9 @@ @ApiModelProperty(value = "门店ID", example = "34") private Long shopId; + @ApiModelProperty(value = "会员ID") + private Long staffId; + public String getType() { return type; } @@ -31,4 +34,12 @@ public void setShopId(Long shopId) { this.shopId = shopId; } + + public Long getStaffId() { + return staffId; + } + + public void setStaffId(Long staffId) { + this.staffId = staffId; + } } -- Gitblit v1.9.1