| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293 |
- package com.cyksj.model.entity;
- import com.baomidou.mybatisplus.annotation.FieldStrategy;
- import com.baomidou.mybatisplus.annotation.TableField;
- import lombok.AllArgsConstructor;
- import lombok.Getter;
- import lombok.Setter;
- import java.io.Serializable;
- import java.math.BigDecimal;
- import java.util.Arrays;
- import java.util.Date;
- /**
- * @author chan
- * @date 2021/10/11 下午4:04
- */
- @Getter
- @Setter
- public class OrderDon extends BaseEntity implements Serializable {
- /**
- * 座位id
- */
- private Long relationId;
- /**
- * 商品id
- */
- private Long skuId;
- /** 订单号 */
- private String orderNo ;
- private Long goodsId;
- /**
- * 微信订单号
- */
- private String transactionId;
- /** 用户id */
- private Long userId ;
- /**
- * openId
- */
- private String openId;
- /** 金额 */
- private BigDecimal money ;
- /**
- * 海外支付金额
- */
- private BigDecimal abroadMoney;
- /**
- * 手续费
- */
- private BigDecimal abroadTransactionFee;
- /**
- * 退款金额
- */
- private BigDecimal refundMoney;
- /**
- * 退款余额
- */
- private BigDecimal refundBalance;
- /**
- * 退款原因
- */
- private String refundDesc;
- /**
- * 优惠金额
- */
- private BigDecimal realMoney;
- /**
- * 优惠金额
- */
- private BigDecimal couponMoney;
- /**
- * 优惠券用户领取id
- */
- private Long couponUserId;
- /**
- * 购买数量
- */
- private Integer num;
- /** 支付状态 */
- private Status status ;
- /**
- * 支付类型
- */
- private Type type;
- /**
- * 推广者设置的优惠码
- */
- private String couponExCode;
- /**
- * 订单类型 1普通订单、2续费订单
- * 默认值为1
- */
- private Integer orderType;
- /**
- * 订单来源
- */
- private Source source;
- /**
- * 订单标注来源
- * 用于客服标注订单来源
- */
- @TableField(updateStrategy = FieldStrategy.IGNORED)
- private String labelSource;
- /**
- * 支付时间
- */
- private Date payTime;
- /**
- * 是否是分销订单
- */
- private Boolean isDistribute;
- /**
- * 是否是固定推广者分销
- */
- private Boolean isFixedDistribute;
- /**
- * 商户id
- */
- private String shopId;
- /**
- * 渠道链接id
- */
- private Long popularizeId;
- /**
- * 是否是推广未登录用户购买订单
- */
- private Boolean isNoLogin;
- /**
- * 是否是网页端支付 默认0移动端支付
- */
- private Boolean isWebPay;
- /**
- * 关联兑换码
- */
- private String exCode;
- /**
- * 关联推广id
- */
- private Long dsPopularizeId;
- /**
- * cps后台推广id
- */
- private Long cpsPopularizeId;
- /**
- * 自定义订阅节点
- */
- private String subNode;
- /**
- * 续费后 是否需要更换车票
- */
- private Boolean isChangeTicket;
- /**
- * 之前的车票的规格id
- */
- private Long preSkuId;
- /**
- * 是否已踢出
- */
- private Boolean isKickOut;
- /**
- * 余额支付
- */
- private BigDecimal balance;
- /**
- * 付款说明
- */
- @TableField(exist = false)
- private String payDesc;
- /**
- * 虚拟平台特殊类型
- */
- @TableField(exist = false)
- private GoodsDon.SpecialType specialType;
- /**
- * 是否优惠加购规格
- */
- private Boolean isDp;
- private String payTitle;
- public enum Status {
- /**
- * 订单状态
- */
- close("已关闭"),
- noPayment("待付款"),
- hasPayment("已付款"),
- transport("已发货"),
- received("已签收"),
- complete("已完成"),
- refund("已退款"),
- ;
- private String desc;
- Status(String desc) {
- this.desc = desc;
- }
- public String getDesc() {
- return desc;
- }
- }
- @Getter
- @AllArgsConstructor
- public enum Type{
- WeChat("wechat","微信"),
- ALI_PAY("zfb","支付宝"),
- EX_CODE("exchange_code","兑换码"),
- LOTTERY("lottery","抽奖"),
- EQUIPMENT("equipment", "实物设备分销"),
- PAY_EQUIPMENT("pay_equipment", "自购设备"),
- BALANCE("balance", "余额支付"),
- PAYPAL("paypal","paypal支付"),
- STRIPE("stripe","stripe支付")
- ;
- String type;
- String desc;
- public static Type getType(String type) {
- return Arrays.stream(Type.values()).filter(tp -> tp.getType().equals(type)).findFirst().orElse(WeChat);
- }
- }
- @Getter
- public enum Source {
- yinHe("银河官网"),
- movies("银河电影"),
- ;
- String desc;
- Source(String desc) {
- this.desc = desc;
- }
- }
- @Getter
- public enum LabelSource {
- red_book("小红书"),
- guang_dian("广点通"),
- tik_tok("抖音付费"),
- ;
- String desc;
- LabelSource(String desc) {
- this.desc = desc;
- }
- }
- }
|