| | |
| | | package cc.mrbird.febs.video.vo; |
| | | |
| | | import com.google.type.Date; |
| | | import io.swagger.annotations.ApiModel; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | @Data |
| | | @ApiModel(value = "AdminVideoVipOrderInfoVo", description = "返回参数类") |
| | | public class AdminVideoVipOrderInfoVo { |
| | | |
| | | private Long id; |
| | | |
| | | private String account; |
| | | |
| | | private String name; |
| | | |
| | | /** |
| | | * 订单编号 |
| | | */ |
| | | private String orderNo; |
| | | |
| | | /** |
| | | * 支付交易编号 |
| | | */ |
| | | private String payTraderNo; |
| | | |
| | | /** |
| | | * 类型;1/支付宝 2/USDT |
| | | */ |
| | | private Integer payType; |
| | | |
| | | /** |
| | | * 用户ID |
| | | */ |
| | | private Long memberId; |
| | | |
| | | /** |
| | | * 金额 |
| | | */ |
| | | private BigDecimal amount; |
| | | |
| | | /** |
| | | * 商品类型;MONTH/PERIOD/YEAR |
| | | */ |
| | | private String goodsType; |
| | | |
| | | /** |
| | | * 状态;1/代支付 2/已支付 3/已取消 |
| | | */ |
| | | private Integer status; |
| | | |
| | | /** |
| | | * 支付时间 |
| | | */ |
| | | private String payTime; |
| | | } |