package com.matrix.system.app.vo;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.matrix.core.tools.DateUtil;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* @author wzy
|
* @date 2020-12-25
|
**/
|
@ApiModel(value = "ServiceOrderDetailItemVo", description = "服务单详情接口参数返回类")
|
public class ServiceOrderDetailItemVo {
|
|
@ApiModelProperty(value = "名称")
|
private String name;
|
|
@ApiModelProperty(value = "数量")
|
private Integer count;
|
|
@ApiModelProperty(value = "价格")
|
private BigDecimal price;
|
|
@JsonFormat(pattern = DateUtil.DATE_FORMAT_MM, timezone = "GMT+8")
|
@ApiModelProperty(value = "服务开始时间")
|
private Date beginTime;
|
|
@JsonFormat(pattern = DateUtil.DATE_FORMAT_MM, timezone = "GMT+8")
|
@ApiModelProperty(value = "服务结束时间")
|
private Date endTime;
|
|
@ApiModelProperty(value = "时长")
|
private Integer timeLength;
|
|
@ApiModelProperty(value = "美疗师")
|
private String beautyName;
|
|
@ApiModelProperty(value = "提成")
|
private BigDecimal commission;
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public Integer getCount() {
|
return count;
|
}
|
|
public void setCount(Integer count) {
|
this.count = count;
|
}
|
|
public BigDecimal getPrice() {
|
return price;
|
}
|
|
public void setPrice(BigDecimal price) {
|
this.price = price;
|
}
|
|
public Date getBeginTime() {
|
return beginTime;
|
}
|
|
public void setBeginTime(Date beginTime) {
|
this.beginTime = beginTime;
|
}
|
|
public Date getEndTime() {
|
return endTime;
|
}
|
|
public void setEndTime(Date endTime) {
|
this.endTime = endTime;
|
}
|
|
public Integer getTimeLength() {
|
return timeLength;
|
}
|
|
public void setTimeLength(Integer timeLength) {
|
this.timeLength = timeLength;
|
}
|
|
public String getBeautyName() {
|
return beautyName;
|
}
|
|
public void setBeautyName(String beautyName) {
|
this.beautyName = beautyName;
|
}
|
|
public BigDecimal getCommission() {
|
return commission;
|
}
|
|
public void setCommission(BigDecimal commission) {
|
this.commission = commission;
|
}
|
}
|