init
This commit is contained in:
@@ -140,6 +140,9 @@ public class User implements Serializable {
|
||||
@Schema(description = "基础资料是否完成 0 未完成 1已完成")
|
||||
private Integer finishBaseStatus;
|
||||
|
||||
@Schema(description = "微信号")
|
||||
private String wxCode;
|
||||
|
||||
/**
|
||||
* 基础信息完成进度
|
||||
*/
|
||||
|
||||
@@ -43,6 +43,8 @@ public class VipPrice implements Serializable {
|
||||
*/
|
||||
@Schema(description = "会员价格")
|
||||
private BigDecimal vipPrice;
|
||||
@Schema(description = "赠送微信交换次数")
|
||||
private Long giveWxTransNum;
|
||||
/**
|
||||
* 1-启用 0-禁用
|
||||
*/
|
||||
|
||||
71
ruoyi-xq/src/main/java/com/ruoyi/xq/domain/WxTransData.java
Normal file
71
ruoyi-xq/src/main/java/com/ruoyi/xq/domain/WxTransData.java
Normal file
@@ -0,0 +1,71 @@
|
||||
package com.ruoyi.xq.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
/**
|
||||
* 微信交换数据对象 xq_wx_trans_data
|
||||
*
|
||||
* @author 77
|
||||
* @date 2024-03-25
|
||||
*/
|
||||
@Data
|
||||
@TableName("xq_wx_trans_data")
|
||||
public class WxTransData implements Serializable {
|
||||
|
||||
private static final long serialVersionUID=1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@TableId(value = "id")
|
||||
private Long id;
|
||||
/**
|
||||
* 发起用户Id
|
||||
*/
|
||||
private Long sponsorUserId;
|
||||
/**
|
||||
* 发起用户号
|
||||
*/
|
||||
private String sponsorUsercode;
|
||||
/**
|
||||
* 发起用户的微信
|
||||
*/
|
||||
private String sponsorWx;
|
||||
/**
|
||||
* 接受用户ID
|
||||
*/
|
||||
private Long receiveUserId;
|
||||
/**
|
||||
* 接受用户号
|
||||
*/
|
||||
private String receiveUsercode;
|
||||
/**
|
||||
* 接受用户的微信
|
||||
*/
|
||||
private String receiveWx;
|
||||
/**
|
||||
* 0-待接收 1-接受交换 2-拒绝交换
|
||||
*/
|
||||
private Integer status;
|
||||
/**
|
||||
* 后台操作管理员ID
|
||||
*/
|
||||
private Long adminId;
|
||||
/**
|
||||
* 后台操作管理员ID
|
||||
*/
|
||||
private String adminName;
|
||||
|
||||
private String traceId;
|
||||
|
||||
private LocalDateTime opTime;
|
||||
|
||||
private LocalDateTime createTime;
|
||||
private LocalDateTime updateTime;
|
||||
|
||||
}
|
||||
52
ruoyi-xq/src/main/java/com/ruoyi/xq/domain/WxTransLog.java
Normal file
52
ruoyi-xq/src/main/java/com/ruoyi/xq/domain/WxTransLog.java
Normal file
@@ -0,0 +1,52 @@
|
||||
package com.ruoyi.xq.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
/**
|
||||
* 微信交换记录对象 xq_wx_trans_log
|
||||
*
|
||||
* @author 77
|
||||
* @date 2024-03-25
|
||||
*/
|
||||
@Data
|
||||
@TableName("xq_wx_trans_log")
|
||||
public class WxTransLog implements Serializable {
|
||||
|
||||
private static final long serialVersionUID=1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@TableId(value = "id")
|
||||
private Long id;
|
||||
/**
|
||||
* 用户ID
|
||||
*/
|
||||
private Long userId;
|
||||
/**
|
||||
* 用户编号
|
||||
*/
|
||||
private String usercode;
|
||||
private String traceId;
|
||||
private Long tarUserId;
|
||||
private String tarUsercode;
|
||||
private String tarUserJson;
|
||||
private String remark;
|
||||
/**
|
||||
* 操作类型
|
||||
*/
|
||||
private Integer cateId;
|
||||
private String cateName;
|
||||
/**
|
||||
* 微信交换次数变化
|
||||
*/
|
||||
private Long changeValue;
|
||||
|
||||
private LocalDateTime createTime;
|
||||
private LocalDateTime updateTime;
|
||||
}
|
||||
Reference in New Issue
Block a user