liujie
2023-05-26 786466f6accfe836160342c56cdf3415e09bcb38
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
package com.stylefeng.guns.modular.system.model;
 
import com.baomidou.mybatisplus.activerecord.Model;
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableName;
import io.swagger.annotations.ApiModelProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author stylefeng
 * @since 2023-01-09
 */
@TableName("t_user")
@Data
@AllArgsConstructor
@NoArgsConstructor
public class TUserSetPermission {
 
    @ApiModelProperty("主账户id")
    private Integer userId;
    @ApiModelProperty("子账户id")
    private Integer id;
    /**
     * 0yes 1no
     */
    @TableField("HOME")
    private Integer home;
    /**
     * 0yes 1no
     */
    @TableField("ACCOUNT_SETTINGS")
    private Integer accountSettings;
    /**
     * 0yes 1no
     */
    @TableField("MY_REQUIREMENT")
    private Integer myRequirement;
    /**
     * 0yes 1no
     */
    @TableField("MY_ORDER")
    private Integer myOrder;
    /**
     * 0yes 1no
     */
    @TableField("MY_COMPLAINT")
    private Integer myComplaint;
    /**
     * 0yes 1no
     */
    @TableField("MY_BANK_CARD")
    private Integer myBankCard;
    /**
     * 0yes 1no
     */
    @TableField("MY_ADDRESS")
    private Integer myAddress;
    /**
     * 0yes 1no
     */
    @TableField("WALLET")
    private Integer wallet;
    /**
     * 0yes 1no
     */
    @TableField("BILL")
    private Integer bill;
    /**
     * 0yes 1no
     */
    @TableField("VIEW_DETAILS")
    private Integer viewDetails;
    /**
     * 0yes 1no
     */
    @TableField("DELETE")
    private Integer delete;
    /**
     * 0yes 1no
     */
    @TableField("EDIT")
    private Integer edit;
 
 
}