xuhy
2025-01-09 712f70b2936079a131ecb1e63c6d337171618cad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.stylefeng.guns.modular.system.model;
 
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.annotations.TableName;
import com.baomidou.mybatisplus.enums.IdType;
import lombok.Data;
 
/**
* 亲密账户
* @author pzb
* @Date 2022/1/28 10:13
*/
@Data
@TableName("t_user_user")
public class UserUser {
    //主键
    @TableId(value = "id", type = IdType.AUTO)
    @TableField("id")
    private Integer id;
    //用户id
    @TableField("userId")
    private Integer userId;
    //绑定用户id
    @TableField("bindUserId")
    private Integer bindUserId;
    //称呼
    @TableField("callName")
    private String callName;
    //电话
    @TableField("phone")
    private String phone;
}