From 2dda6304029c95e171b2f9e32406eb4600d77ebd Mon Sep 17 00:00:00 2001 From: 44323 <443237572@qq.com> Date: 星期三, 01 十一月 2023 18:57:58 +0800 Subject: [PATCH] 支付会员送券功能补充 运营商权限bug修改 --- cloud-server-management/src/main/java/com/dsh/guns/modular/system/model/OperatorUser.java | 31 ++++++++++++++++++++++--------- 1 files changed, 22 insertions(+), 9 deletions(-) diff --git a/cloud-server-management/src/main/java/com/dsh/guns/modular/system/model/OperatorUser.java b/cloud-server-management/src/main/java/com/dsh/guns/modular/system/model/OperatorUser.java index 6ccfbc2..871d65d 100644 --- a/cloud-server-management/src/main/java/com/dsh/guns/modular/system/model/OperatorUser.java +++ b/cloud-server-management/src/main/java/com/dsh/guns/modular/system/model/OperatorUser.java @@ -1,5 +1,8 @@ package com.dsh.guns.modular.system.model; +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableField; +import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; @@ -8,16 +11,26 @@ @TableName("t_operator_user") @Data public class OperatorUser { + @TableId(value = "id", type = IdType.AUTO) private Integer id; - private String province; - private Integer provinceCode; - private String city; - private Integer cityCode; + @TableField(value = "userId") private Integer userId; - private Integer platform; - private Integer type; - private BigDecimal proportion; - private Integer state; - private Integer status; + @TableField(value = "alipay") + private String alipay; + @TableField(value = "alipayProportion") + private String alipayProportion; + @TableField(value = "alipayNum") + private String alipayNum; + @TableField(value = "wechat") + private String wechat; + @TableField(value = "wechatProportion") + private String wechatProportion; + @TableField(value = "wechatNum") + private String wechatNum; + @TableField(value = "alipayType") + private Integer alipayType; + @TableField(value = "wechatType") + private Integer wechatType; + @TableField(value = "operatorId") private Integer operatorId; } -- Gitblit v1.7.1