92 lines
1.6 KiB
Java
92 lines
1.6 KiB
Java
package com.ruoyi.cai.domain;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
import java.math.BigDecimal;
|
|
import java.time.LocalDateTime;
|
|
|
|
/**
|
|
* VIP订单对象 cai_vip_order
|
|
*
|
|
* @author 77
|
|
* @date 2024-01-03
|
|
*/
|
|
@Data
|
|
@TableName("cai_vip_order")
|
|
public class VipOrder implements Serializable {
|
|
|
|
private static final long serialVersionUID=1L;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
@TableId(value = "id",type = IdType.AUTO)
|
|
private Long id;
|
|
/**
|
|
* 用户ID
|
|
*/
|
|
private Long userId;
|
|
/**
|
|
* VIP-ID
|
|
*/
|
|
private Long vipId;
|
|
/**
|
|
* VIP名称
|
|
*/
|
|
private String vipName;
|
|
/**
|
|
* vip类型
|
|
*/
|
|
private Integer vipType;
|
|
/**
|
|
* VIP时长
|
|
*/
|
|
private Integer vipExpire;
|
|
/**
|
|
* 是否永久会员
|
|
*/
|
|
private Integer vipLongs;
|
|
/**
|
|
* 价格
|
|
*/
|
|
private BigDecimal price;
|
|
/**
|
|
* 订单号
|
|
*/
|
|
private String orderNo;
|
|
/**
|
|
* 平台
|
|
*/
|
|
private String platformType;
|
|
/**
|
|
* 状态 0-待支付 1-已支付 2-已退款
|
|
*/
|
|
private Integer payStatus;
|
|
private LocalDateTime payTime;
|
|
/**
|
|
* appId
|
|
*/
|
|
private String appid;
|
|
/**
|
|
*
|
|
*/
|
|
private String returnContent;
|
|
/**
|
|
*
|
|
*/
|
|
private String operateIp;
|
|
/**
|
|
* 是否为后台管理新增
|
|
*/
|
|
private Boolean admin;
|
|
|
|
private LocalDateTime createTime;
|
|
|
|
private Long adminId;
|
|
|
|
}
|