| | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | |
| | | import javax.naming.PartialResultException; |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * 购课记录列表VO |
| | |
| | | private String payUser; |
| | | private String phone; |
| | | // 学员id |
| | | private Integer studentId; |
| | | private String studentId; |
| | | private String payStudent; |
| | | private Integer payType; |
| | | private BigDecimal originalPrice; |
| | |
| | | private Integer buyType; |
| | | // 当状态为手动支付时使用 用于显示手动支付时显示操作人 |
| | | private String buyTypeName; |
| | | private Integer classHours; |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") |
| | | private Date insertTime; |
| | | } |