| | |
| | | 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; |
| | | |
| | |
| | | @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; |
| | | @TableField(value = "alipayAudit") |
| | | private Integer alipayAudit; |
| | | @TableField(value = "wechatAudit") |
| | | private Integer wechatAudit; |
| | | } |