Helius
2021-04-12 b8d50f6ad9d1ab407e5b2a6867cf47bc4640a43c
zq-erp/src/main/java/com/matrix/system/app/vo/ServiceOrderListVo.java
@@ -18,6 +18,9 @@
    @ApiModelProperty(value = "服务单Id")
    private Long id;
    @ApiModelProperty(value = "会员ID")
    private Long vipId;
    @ApiModelProperty(value = "下单顾问ID")
    private Long createStaffId;
@@ -31,6 +34,9 @@
    @ApiModelProperty(value = "会员名称")
    private String vipName;
    @ApiModelProperty(value = "门店名称")
    private String shopName;
    @ApiModelProperty(value = "服务时长")
    private Integer timeLength;
@@ -42,6 +48,14 @@
    @ApiModelProperty(value = "服务项目信息")
    private List<ServiceOrderListProjVo> projs;
    public Long getVipId() {
        return vipId;
    }
    public void setVipId(Long vipId) {
        this.vipId = vipId;
    }
    public Long getCreateStaffId() {
        return createStaffId;
@@ -111,6 +125,14 @@
        return status;
    }
    public String getShopName() {
        return shopName;
    }
    public void setShopName(String shopName) {
        this.shopName = shopName;
    }
    public void setStatus(String status) {
        switch (status) {
            case "待预约" :
@@ -137,6 +159,9 @@
            case "预约取消" :
                this.status = "8";
                break;
            case "待确认" :
                this.status = "9";
                break;
            default:
                this.status = "0";
                break;