VatStandardAccount.java 13.6 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 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 95 96 97 98 99 100

import java.io.Serializable;

/**
 *
 * This class was generated by MyBatis Generator.
 * This class corresponds to the database table StandardAccount
 *
 * @mbg.generated do_not_delete_during_merge
 */
public class VatStandardAccount implements Serializable {
    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column StandardAccount.ID
     *
     * @mbg.generated
     */
    private String ID;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column StandardAccount.Code
     *
     * @mbg.generated
     */
    private String code;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column StandardAccount.Name
     *
     * @mbg.generated
     */
    private String name;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column StandardAccount.ParentCode
     *
     * @mbg.generated
     */
    private String parentCode;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column StandardAccount.FullName
     *
     * @mbg.generated
     */
    private String fullName;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column StandardAccount.AcctProp
     *
     * @mbg.generated
     */
    private Integer acctProp;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column StandardAccount.SubProp
     *
     * @mbg.generated
     */
    private Integer subProp;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column StandardAccount.AcctLevel
     *
     * @mbg.generated
     */
    private Integer acctLevel;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column StandardAccount.Direction
     *
     * @mbg.generated
     */
    private Integer direction;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column StandardAccount.IsLeaf
     *
     * @mbg.generated
     */
101
    private Boolean isLeaf;
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column StandardAccount.RuleType
     *
     * @mbg.generated
     */
    private Integer ruleType;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column StandardAccount.IsActive
     *
     * @mbg.generated
     */
119
    private Boolean isActive;
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column StandardAccount.EnglishName
     *
     * @mbg.generated
     */
    private String englishName;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column StandardAccount.IndustryID
     *
     * @mbg.generated
     */
    private String industryID;

    /**
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database table StandardAccount
     *
     * @mbg.generated
     */
    private static final long serialVersionUID = 1L;

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column StandardAccount.ID
     *
     * @return the value of StandardAccount.ID
     *
     * @mbg.generated
     */
    public String getID() {
        return ID;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column StandardAccount.ID
     *
     * @param ID the value for StandardAccount.ID
     *
     * @mbg.generated
     */
    public void setID(String ID) {
        this.ID = ID == null ? null : ID.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column StandardAccount.Code
     *
     * @return the value of StandardAccount.Code
     *
     * @mbg.generated
     */
    public String getCode() {
        return code;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column StandardAccount.Code
     *
     * @param code the value for StandardAccount.Code
     *
     * @mbg.generated
     */
    public void setCode(String code) {
        this.code = code == null ? null : code.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column StandardAccount.Name
     *
     * @return the value of StandardAccount.Name
     *
     * @mbg.generated
     */
    public String getName() {
        return name;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column StandardAccount.Name
     *
     * @param name the value for StandardAccount.Name
     *
     * @mbg.generated
     */
    public void setName(String name) {
        this.name = name == null ? null : name.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column StandardAccount.ParentCode
     *
     * @return the value of StandardAccount.ParentCode
     *
     * @mbg.generated
     */
    public String getParentCode() {
        return parentCode;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column StandardAccount.ParentCode
     *
     * @param parentCode the value for StandardAccount.ParentCode
     *
     * @mbg.generated
     */
    public void setParentCode(String parentCode) {
        this.parentCode = parentCode == null ? null : parentCode.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column StandardAccount.FullName
     *
     * @return the value of StandardAccount.FullName
     *
     * @mbg.generated
     */
    public String getFullName() {
        return fullName;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column StandardAccount.FullName
     *
     * @param fullName the value for StandardAccount.FullName
     *
     * @mbg.generated
     */
    public void setFullName(String fullName) {
        this.fullName = fullName == null ? null : fullName.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column StandardAccount.AcctProp
     *
     * @return the value of StandardAccount.AcctProp
     *
     * @mbg.generated
     */
    public Integer getAcctProp() {
        return acctProp;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column StandardAccount.AcctProp
     *
     * @param acctProp the value for StandardAccount.AcctProp
     *
     * @mbg.generated
     */
    public void setAcctProp(Integer acctProp) {
        this.acctProp = acctProp;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column StandardAccount.SubProp
     *
     * @return the value of StandardAccount.SubProp
     *
     * @mbg.generated
     */
    public Integer getSubProp() {
        return subProp;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column StandardAccount.SubProp
     *
     * @param subProp the value for StandardAccount.SubProp
     *
     * @mbg.generated
     */
    public void setSubProp(Integer subProp) {
        this.subProp = subProp;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column StandardAccount.AcctLevel
     *
     * @return the value of StandardAccount.AcctLevel
     *
     * @mbg.generated
     */
    public Integer getAcctLevel() {
        return acctLevel;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column StandardAccount.AcctLevel
     *
     * @param acctLevel the value for StandardAccount.AcctLevel
     *
     * @mbg.generated
     */
    public void setAcctLevel(Integer acctLevel) {
        this.acctLevel = acctLevel;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column StandardAccount.Direction
     *
     * @return the value of StandardAccount.Direction
     *
     * @mbg.generated
     */
    public Integer getDirection() {
        return direction;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column StandardAccount.Direction
     *
     * @param direction the value for StandardAccount.Direction
     *
     * @mbg.generated
     */
    public void setDirection(Integer direction) {
        this.direction = direction;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column StandardAccount.IsLeaf
     *
     * @return the value of StandardAccount.IsLeaf
     *
     * @mbg.generated
     */
371
    public Boolean getIsLeaf() {
372 373 374 375 376 377 378 379 380 381 382
        return isLeaf;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column StandardAccount.IsLeaf
     *
     * @param isLeaf the value for StandardAccount.IsLeaf
     *
     * @mbg.generated
     */
383
    public void setIsLeaf(Boolean isLeaf) {
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
        this.isLeaf = isLeaf;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column StandardAccount.RuleType
     *
     * @return the value of StandardAccount.RuleType
     *
     * @mbg.generated
     */
    public Integer getRuleType() {
        return ruleType;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column StandardAccount.RuleType
     *
     * @param ruleType the value for StandardAccount.RuleType
     *
     * @mbg.generated
     */
    public void setRuleType(Integer ruleType) {
        this.ruleType = ruleType;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column StandardAccount.IsActive
     *
     * @return the value of StandardAccount.IsActive
     *
     * @mbg.generated
     */
419
    public Boolean getIsActive() {
420 421 422 423 424 425 426 427 428 429 430
        return isActive;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column StandardAccount.IsActive
     *
     * @param isActive the value for StandardAccount.IsActive
     *
     * @mbg.generated
     */
431
    public void setIsActive(Boolean isActive) {
432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512
        this.isActive = isActive;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column StandardAccount.EnglishName
     *
     * @return the value of StandardAccount.EnglishName
     *
     * @mbg.generated
     */
    public String getEnglishName() {
        return englishName;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column StandardAccount.EnglishName
     *
     * @param englishName the value for StandardAccount.EnglishName
     *
     * @mbg.generated
     */
    public void setEnglishName(String englishName) {
        this.englishName = englishName == null ? null : englishName.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column StandardAccount.IndustryID
     *
     * @return the value of StandardAccount.IndustryID
     *
     * @mbg.generated
     */
    public String getIndustryID() {
        return industryID;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column StandardAccount.IndustryID
     *
     * @param industryID the value for StandardAccount.IndustryID
     *
     * @mbg.generated
     */
    public void setIndustryID(String industryID) {
        this.industryID = industryID == null ? null : industryID.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table StandardAccount
     *
     * @mbg.generated
     */
    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append(getClass().getSimpleName());
        sb.append(" [");
        sb.append("Hash = ").append(hashCode());
        sb.append(", ID=").append(ID);
        sb.append(", code=").append(code);
        sb.append(", name=").append(name);
        sb.append(", parentCode=").append(parentCode);
        sb.append(", fullName=").append(fullName);
        sb.append(", acctProp=").append(acctProp);
        sb.append(", subProp=").append(subProp);
        sb.append(", acctLevel=").append(acctLevel);
        sb.append(", direction=").append(direction);
        sb.append(", isLeaf=").append(isLeaf);
        sb.append(", ruleType=").append(ruleType);
        sb.append(", isActive=").append(isActive);
        sb.append(", englishName=").append(englishName);
        sb.append(", industryID=").append(industryID);
        sb.append("]");
        return sb.toString();
    }
}