New file |
| | |
| | | package com.matrix.system.hive.vo; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | |
| | | @Data |
| | | public class DailyBeautyListVo { |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone="GMT+8") |
| | | private Date datatime; |
| | | |
| | | private String beautyName; |
| | | |
| | | private String vipName; |
| | | |
| | | private Long vipId; |
| | | |
| | | private int isAppoint; |
| | | |
| | | private String arrivalWay; |
| | | |
| | | private int orderCnt; |
| | | |
| | | private int arriveCnt; |
| | | |
| | | private String payMethods; |
| | | |
| | | private BigDecimal teamPay; |
| | | |
| | | private BigDecimal tcAndProjCash; |
| | | |
| | | private BigDecimal productCash; |
| | | |
| | | private BigDecimal cardCash; |
| | | |
| | | private BigDecimal cardPay; |
| | | |
| | | private BigDecimal cashPay; |
| | | |
| | | private BigDecimal consume; |
| | | |
| | | private Integer projCnt; |
| | | |
| | | private BigDecimal ticheng; |
| | | |
| | | private String projInfo; |
| | | } |