DishesOrderWebOutDTO.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. package com.poteviohealth.cgp.statistics.model.outdto;
  2. import io.swagger.annotations.ApiModel;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import lombok.Data;
  5. import java.util.Date;
  6. /**
  7. * @Author QIN
  8. * @Date 2019/7/16 19:08
  9. * @Param 订单DTO
  10. * @return
  11. **/
  12. @Data
  13. @ApiModel(value="订单列表查询出参")
  14. public class DishesOrderWebOutDTO {
  15. @ApiModelProperty(value = "驿站名称")
  16. private String serviceStationName;
  17. @ApiModelProperty(value = "下单时间")
  18. private Date orderTime;
  19. @ApiModelProperty(value = "订单号")
  20. private String sn;
  21. @ApiModelProperty(value = "实付总价格(分)")
  22. private String sumPrice;
  23. @ApiModelProperty(value = "卡支付金额(分)")
  24. private String cardPrice;
  25. @ApiModelProperty(value = "补贴卡支付金额(分)")
  26. private String subsidyPrice;
  27. @ApiModelProperty(value = "支付金额(分)")
  28. private String payPrice;
  29. @ApiModelProperty(value = "资金积分支付个数")
  30. private Long fundPrice;
  31. @ApiModelProperty(value = "客户姓名")
  32. private String customerName;
  33. @ApiModelProperty(value = "客户电话")
  34. private String customerPhone;
  35. @ApiModelProperty(value = "商品相关信息")
  36. private String productString;
  37. @ApiModelProperty(value = "支付状态:1.待支付;2.支付中,3.已支付,4:支付失败,5:退款中,6:退款成功,7:退款失败")
  38. private String payStatusStr;
  39. @ApiModelProperty(value = "支付账户:1.助餐;2.积分;3.市场化;4.现金;")
  40. private String payAccountStr;
  41. }