123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- package beilv.bootacourse.domain;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import lombok.*;
- import java.util.Date;
- @Getter
- @Setter
- @ToString
- @AllArgsConstructor
- @NoArgsConstructor
- public class BootACourse {
- /**
- * 数据id
- */
- private Long id;
- /**
- * 用户id
- */
- private String userId;
- /**
- * 联系人
- */
- private String contactPeople;
- /**
- * 联系电话
- */
- private String contactNumber;
- /**
- * 下单时间
- */
- private String registrationTime;
- /**
- * 支付时间
- */
- private String paymentTime;
- /**
- * 取消时间
- */
- private String cancellationTime;
- /**
- * 退款时间
- */
- private String refundTime;
- /**
- * 支付状态
- */
- private String paymentStatus;
- /**
- * 订单编号
- */
- private String orderId;
- /**
- * 赛事id
- */
- private String ticketId;
- /**
- * 订单类型
- */
- private String orderType;
- /**
- * 退款说明
- */
- private String refundInstructions;
- /**
- * 会员卡id
- */
- private String clubCardId;
- /**
- * 最晚退单时间
- */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm", timezone = "GMT+8")
- private Date refund;
- public BootACourse(String userId, String contactPeople, String contactNumber, String registrationTime, String paymentStatus, String orderId, String ticketId, String orderType, String clubCardId, Date refund) {
- this.userId = userId;
- this.contactPeople = contactPeople;
- this.contactNumber = contactNumber;
- this.registrationTime = registrationTime;
- this.paymentStatus = paymentStatus;
- this.orderId = orderId;
- this.ticketId = ticketId;
- this.orderType = orderType;
- this.clubCardId = clubCardId;
- this.refund = refund;
- }
- }
|