From c927efe5490eb43b75d5f6d65631951e891c3f8e Mon Sep 17 00:00:00 2001 From: 935090232@qq.com <ak473600000> Date: Thu, 07 Jan 2021 23:42:07 +0800 Subject: [PATCH] 公众号模板消息demo --- zq-erp/src/main/java/com/matrix/system/app/vo/ServiceOrderListProjVo.java | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/zq-erp/src/main/java/com/matrix/system/app/vo/ServiceOrderListProjVo.java b/zq-erp/src/main/java/com/matrix/system/app/vo/ServiceOrderListProjVo.java index d20e4a2..b1102ef 100644 --- a/zq-erp/src/main/java/com/matrix/system/app/vo/ServiceOrderListProjVo.java +++ b/zq-erp/src/main/java/com/matrix/system/app/vo/ServiceOrderListProjVo.java @@ -10,12 +10,23 @@ @ApiModel(value = "ServiceOrderListProjVo", description = "服务单列表项目返回参数类") public class ServiceOrderListProjVo { + @ApiModelProperty(value = "美疗师ID") + private Long id; + @ApiModelProperty(value = "项目名称") private String projName; @ApiModelProperty(value = "美疗师") private String beautyName; + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + public String getProjName() { return projName; } -- Gitblit v1.9.1