GoodsMapping.java 6.91 KB
Newer Older
frank.xa.zhang's avatar
frank.xa.zhang committed
1
package pwc.taxtech.atms.vat.entity;
2 3 4 5 6 7 8

import java.io.Serializable;
import java.util.Date;

/**
 *
 * This class was generated by MyBatis Generator.
neo's avatar
neo committed
9
 * This class corresponds to the database table TAX_PROJECT.GOODS_MAPPING
10 11 12 13 14 15 16
 *
 * @mbg.generated do_not_delete_during_merge
 */
public class GoodsMapping implements Serializable {
    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
17
     * This field corresponds to the database column TAX_PROJECT.GOODS_MAPPING.ID
18 19 20
     *
     * @mbg.generated
     */
neo's avatar
neo committed
21
    private String id;
22 23 24 25

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
26
     * This field corresponds to the database column TAX_PROJECT.GOODS_MAPPING.CUST_GOODS_NAME
27 28 29 30 31 32 33 34
     *
     * @mbg.generated
     */
    private String custGoodsName;

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
35
     * This field corresponds to the database column TAX_PROJECT.GOODS_MAPPING.STD_GOODS_NAME
36 37 38 39 40 41 42 43
     *
     * @mbg.generated
     */
    private String stdGoodsName;

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
44
     * This field corresponds to the database column TAX_PROJECT.GOODS_MAPPING.CREATOR_ID
45 46 47
     *
     * @mbg.generated
     */
neo's avatar
neo committed
48
    private String creatorId;
49 50 51 52

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
53
     * This field corresponds to the database column TAX_PROJECT.GOODS_MAPPING.CREATE_TIME
54 55 56 57 58 59 60 61
     *
     * @mbg.generated
     */
    private Date createTime;

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
62
     * This field corresponds to the database column TAX_PROJECT.GOODS_MAPPING.UPDATE_TIME
63 64 65 66 67 68 69
     *
     * @mbg.generated
     */
    private Date updateTime;

    /**
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
70
     * This field corresponds to the database table TAX_PROJECT.GOODS_MAPPING
71 72 73 74 75 76 77
     *
     * @mbg.generated
     */
    private static final long serialVersionUID = 1L;

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
78
     * This method returns the value of the database column TAX_PROJECT.GOODS_MAPPING.ID
79
     *
neo's avatar
neo committed
80
     * @return the value of TAX_PROJECT.GOODS_MAPPING.ID
81 82 83
     *
     * @mbg.generated
     */
neo's avatar
neo committed
84 85
    public String getId() {
        return id;
86 87 88 89
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
90
     * This method sets the value of the database column TAX_PROJECT.GOODS_MAPPING.ID
91
     *
neo's avatar
neo committed
92
     * @param id the value for TAX_PROJECT.GOODS_MAPPING.ID
93 94 95
     *
     * @mbg.generated
     */
neo's avatar
neo committed
96 97
    public void setId(String id) {
        this.id = id == null ? null : id.trim();
98 99 100 101
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
102
     * This method returns the value of the database column TAX_PROJECT.GOODS_MAPPING.CUST_GOODS_NAME
103
     *
neo's avatar
neo committed
104
     * @return the value of TAX_PROJECT.GOODS_MAPPING.CUST_GOODS_NAME
105 106 107 108 109 110 111 112 113
     *
     * @mbg.generated
     */
    public String getCustGoodsName() {
        return custGoodsName;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
114
     * This method sets the value of the database column TAX_PROJECT.GOODS_MAPPING.CUST_GOODS_NAME
115
     *
neo's avatar
neo committed
116
     * @param custGoodsName the value for TAX_PROJECT.GOODS_MAPPING.CUST_GOODS_NAME
117 118 119 120 121 122 123 124 125
     *
     * @mbg.generated
     */
    public void setCustGoodsName(String custGoodsName) {
        this.custGoodsName = custGoodsName == null ? null : custGoodsName.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
126
     * This method returns the value of the database column TAX_PROJECT.GOODS_MAPPING.STD_GOODS_NAME
127
     *
neo's avatar
neo committed
128
     * @return the value of TAX_PROJECT.GOODS_MAPPING.STD_GOODS_NAME
129 130 131 132 133 134 135 136 137
     *
     * @mbg.generated
     */
    public String getStdGoodsName() {
        return stdGoodsName;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
138
     * This method sets the value of the database column TAX_PROJECT.GOODS_MAPPING.STD_GOODS_NAME
139
     *
neo's avatar
neo committed
140
     * @param stdGoodsName the value for TAX_PROJECT.GOODS_MAPPING.STD_GOODS_NAME
141 142 143 144 145 146 147 148 149
     *
     * @mbg.generated
     */
    public void setStdGoodsName(String stdGoodsName) {
        this.stdGoodsName = stdGoodsName == null ? null : stdGoodsName.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
150
     * This method returns the value of the database column TAX_PROJECT.GOODS_MAPPING.CREATOR_ID
151
     *
neo's avatar
neo committed
152
     * @return the value of TAX_PROJECT.GOODS_MAPPING.CREATOR_ID
153 154 155
     *
     * @mbg.generated
     */
neo's avatar
neo committed
156 157
    public String getCreatorId() {
        return creatorId;
158 159 160 161
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
162
     * This method sets the value of the database column TAX_PROJECT.GOODS_MAPPING.CREATOR_ID
163
     *
neo's avatar
neo committed
164
     * @param creatorId the value for TAX_PROJECT.GOODS_MAPPING.CREATOR_ID
165 166 167
     *
     * @mbg.generated
     */
neo's avatar
neo committed
168 169
    public void setCreatorId(String creatorId) {
        this.creatorId = creatorId == null ? null : creatorId.trim();
170 171 172 173
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
174
     * This method returns the value of the database column TAX_PROJECT.GOODS_MAPPING.CREATE_TIME
175
     *
neo's avatar
neo committed
176
     * @return the value of TAX_PROJECT.GOODS_MAPPING.CREATE_TIME
177 178 179 180 181 182 183 184 185
     *
     * @mbg.generated
     */
    public Date getCreateTime() {
        return createTime;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
186
     * This method sets the value of the database column TAX_PROJECT.GOODS_MAPPING.CREATE_TIME
187
     *
neo's avatar
neo committed
188
     * @param createTime the value for TAX_PROJECT.GOODS_MAPPING.CREATE_TIME
189 190 191 192 193 194 195 196 197
     *
     * @mbg.generated
     */
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
198
     * This method returns the value of the database column TAX_PROJECT.GOODS_MAPPING.UPDATE_TIME
199
     *
neo's avatar
neo committed
200
     * @return the value of TAX_PROJECT.GOODS_MAPPING.UPDATE_TIME
201 202 203 204 205 206 207 208 209
     *
     * @mbg.generated
     */
    public Date getUpdateTime() {
        return updateTime;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
210
     * This method sets the value of the database column TAX_PROJECT.GOODS_MAPPING.UPDATE_TIME
211
     *
neo's avatar
neo committed
212
     * @param updateTime the value for TAX_PROJECT.GOODS_MAPPING.UPDATE_TIME
213 214 215 216 217 218 219 220 221
     *
     * @mbg.generated
     */
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
222
     * This method corresponds to the database table TAX_PROJECT.GOODS_MAPPING
223 224 225 226 227 228 229 230 231
     *
     * @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
232
        sb.append(", id=").append(id);
233 234
        sb.append(", custGoodsName=").append(custGoodsName);
        sb.append(", stdGoodsName=").append(stdGoodsName);
neo's avatar
neo committed
235
        sb.append(", creatorId=").append(creatorId);
236 237 238 239 240 241
        sb.append(", createTime=").append(createTime);
        sb.append(", updateTime=").append(updateTime);
        sb.append("]");
        return sb.toString();
    }
}