| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDateTime; |
| | | |
| | | @Data |
| | |
| | | public class FinanceStatisticsVO { |
| | | @ApiModelProperty("订单id") |
| | | private Integer id; |
| | | @Excel(name = "金额") |
| | | @ApiModelProperty("金额") |
| | | private BigDecimal money; |
| | | |
| | | @Excel(name = "下单时间",width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | @ApiModelProperty("下单时间") |
| | |
| | | @ApiModelProperty("类型 1-订单 2-会员充值") |
| | | private Integer type; |
| | | |
| | | @Excel(name = "支付方式", readConverterExp = " 0-在线支付 1-会员支付") |
| | | @ApiModelProperty("支付方式 0-在线支付 1-会员支付") |
| | | private Integer payMethod; |
| | | |
| | | @Excel(name = "订单编号") |
| | | @ApiModelProperty("订单编号") |
| | | private String orderNumber; |