package com.matrix.system.shopXcx.api.vo; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; @ApiModel(value = "ErpServiceOrderListProjVo", description = "服务单列表项目返回参数类") public class ErpServiceOrderListProjVo { @ApiModelProperty(value = "项目名称") private String projName; @ApiModelProperty(value = "项目图片") private String imgMobile; @ApiModelProperty(value = "美疗师") private String beautyName=""; public String getImgMobile() { return imgMobile; } public void setImgMobile(String imgMobile) { this.imgMobile = imgMobile; } public String getProjName() { return projName; } public void setProjName(String projName) { this.projName = projName; } public String getBeautyName() { return beautyName; } public void setBeautyName(String beautyName) { this.beautyName = beautyName; } }