| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- package com.poteviohealth.cgp.statistics.model.outdto;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import java.util.Date;
- /**
- * @Author QIN
- * @Date 2019/7/16 19:08
- * @Param 订单DTO
- * @return
- **/
- @Data
- @ApiModel(value="订单列表查询出参")
- public class DishesOrderWebOutDTO {
- @ApiModelProperty(value = "驿站名称")
- private String serviceStationName;
- @ApiModelProperty(value = "下单时间")
- private Date orderTime;
- @ApiModelProperty(value = "订单号")
- private String sn;
- @ApiModelProperty(value = "实付总价格(分)")
- private String sumPrice;
- @ApiModelProperty(value = "卡支付金额(分)")
- private String cardPrice;
- @ApiModelProperty(value = "补贴卡支付金额(分)")
- private String subsidyPrice;
- @ApiModelProperty(value = "支付金额(分)")
- private String payPrice;
- @ApiModelProperty(value = "资金积分支付个数")
- private Long fundPrice;
- @ApiModelProperty(value = "客户姓名")
- private String customerName;
- @ApiModelProperty(value = "客户电话")
- private String customerPhone;
- @ApiModelProperty(value = "商品相关信息")
- private String productString;
- @ApiModelProperty(value = "支付状态:1.待支付;2.支付中,3.已支付,4:支付失败,5:退款中,6:退款成功,7:退款失败")
- private String payStatusStr;
- @ApiModelProperty(value = "支付账户:1.助餐;2.积分;3.市场化;4.现金;")
- private String payAccountStr;
- }
|