UserDimensionValueRole.java 4 KB
Newer Older
1
package pwc.taxtech.atms.entity;
eddie.woo's avatar
eddie.woo committed
2 3 4 5 6 7

import java.io.Serializable;

/**
 *
 * This class was generated by MyBatis Generator.
gary's avatar
gary committed
8
 * This class corresponds to the database table user_dimension_value_role
eddie.woo's avatar
eddie.woo committed
9 10 11
 *
 * @mbg.generated do_not_delete_during_merge
 */
gary's avatar
gary committed
12
public class UserDimensionValueRole extends BaseEntity implements Serializable {
eddie.woo's avatar
eddie.woo committed
13 14 15
    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
16
     * This field corresponds to the database column user_dimension_value_role.id
eddie.woo's avatar
eddie.woo committed
17 18 19
     *
     * @mbg.generated
     */
neo's avatar
neo committed
20
    private String id;
eddie.woo's avatar
eddie.woo committed
21 22 23 24

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
25
     * This field corresponds to the database column user_dimension_value_role.user_dimension_value_id
eddie.woo's avatar
eddie.woo committed
26 27 28
     *
     * @mbg.generated
     */
neo's avatar
neo committed
29
    private String userDimensionValueId;
eddie.woo's avatar
eddie.woo committed
30 31 32 33

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
34
     * This field corresponds to the database column user_dimension_value_role.role_id
eddie.woo's avatar
eddie.woo committed
35 36 37
     *
     * @mbg.generated
     */
neo's avatar
neo committed
38
    private String roleId;
eddie.woo's avatar
eddie.woo committed
39 40 41

    /**
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
42
     * This field corresponds to the database table user_dimension_value_role
eddie.woo's avatar
eddie.woo committed
43 44 45 46 47 48 49
     *
     * @mbg.generated
     */
    private static final long serialVersionUID = 1L;

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
50
     * This method returns the value of the database column user_dimension_value_role.id
eddie.woo's avatar
eddie.woo committed
51
     *
gary's avatar
gary committed
52
     * @return the value of user_dimension_value_role.id
eddie.woo's avatar
eddie.woo committed
53 54 55
     *
     * @mbg.generated
     */
neo's avatar
neo committed
56 57
    public String getId() {
        return id;
eddie.woo's avatar
eddie.woo committed
58 59 60 61
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
62
     * This method sets the value of the database column user_dimension_value_role.id
eddie.woo's avatar
eddie.woo committed
63
     *
gary's avatar
gary committed
64
     * @param id the value for user_dimension_value_role.id
eddie.woo's avatar
eddie.woo committed
65 66 67
     *
     * @mbg.generated
     */
neo's avatar
neo committed
68 69
    public void setId(String id) {
        this.id = id == null ? null : id.trim();
eddie.woo's avatar
eddie.woo committed
70 71 72 73
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
74
     * This method returns the value of the database column user_dimension_value_role.user_dimension_value_id
eddie.woo's avatar
eddie.woo committed
75
     *
gary's avatar
gary committed
76
     * @return the value of user_dimension_value_role.user_dimension_value_id
eddie.woo's avatar
eddie.woo committed
77 78 79
     *
     * @mbg.generated
     */
neo's avatar
neo committed
80 81
    public String getUserDimensionValueId() {
        return userDimensionValueId;
eddie.woo's avatar
eddie.woo committed
82 83 84 85
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
86
     * This method sets the value of the database column user_dimension_value_role.user_dimension_value_id
eddie.woo's avatar
eddie.woo committed
87
     *
gary's avatar
gary committed
88
     * @param userDimensionValueId the value for user_dimension_value_role.user_dimension_value_id
eddie.woo's avatar
eddie.woo committed
89 90 91
     *
     * @mbg.generated
     */
neo's avatar
neo committed
92 93
    public void setUserDimensionValueId(String userDimensionValueId) {
        this.userDimensionValueId = userDimensionValueId == null ? null : userDimensionValueId.trim();
eddie.woo's avatar
eddie.woo committed
94 95 96 97
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
98
     * This method returns the value of the database column user_dimension_value_role.role_id
eddie.woo's avatar
eddie.woo committed
99
     *
gary's avatar
gary committed
100
     * @return the value of user_dimension_value_role.role_id
eddie.woo's avatar
eddie.woo committed
101 102 103
     *
     * @mbg.generated
     */
neo's avatar
neo committed
104 105
    public String getRoleId() {
        return roleId;
eddie.woo's avatar
eddie.woo committed
106 107 108 109
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
110
     * This method sets the value of the database column user_dimension_value_role.role_id
eddie.woo's avatar
eddie.woo committed
111
     *
gary's avatar
gary committed
112
     * @param roleId the value for user_dimension_value_role.role_id
eddie.woo's avatar
eddie.woo committed
113 114 115
     *
     * @mbg.generated
     */
neo's avatar
neo committed
116 117
    public void setRoleId(String roleId) {
        this.roleId = roleId == null ? null : roleId.trim();
eddie.woo's avatar
eddie.woo committed
118 119 120 121
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
122
     * This method corresponds to the database table user_dimension_value_role
eddie.woo's avatar
eddie.woo committed
123 124 125 126 127 128 129 130 131
     *
     * @mbg.generated
     */
    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append(getClass().getSimpleName());
        sb.append(" [");
        sb.append("Hash = ").append(hashCode());
neo's avatar
neo committed
132 133 134
        sb.append(", id=").append(id);
        sb.append(", userDimensionValueId=").append(userDimensionValueId);
        sb.append(", roleId=").append(roleId);
eddie.woo's avatar
eddie.woo committed
135 136 137 138
        sb.append("]");
        return sb.toString();
    }
}