Blame view

src/main/java/com/xkl/domain/XklCompanyEntity.java 2.5 KB
fangyeqing authored
1
package com.xkl.domain;
fangyeqing authored
2
import lombok.Data;
zhaoyue authored
3
fangyeqing authored
4
import javax.persistence.*;
zhaoyue authored
5 6

/**
fangyeqing authored
7
 * Created by win7 on 2017/2/27.
zhaoyue authored
8
 */
fangyeqing authored
9
@Data
zhaoyue authored
10 11 12 13
@Entity
@Table(name = "xkl_company")
public class XklCompanyEntity {
    @Id
fangyeqing authored
14
    @GeneratedValue
zhaoyue authored
15 16
    @Column(name = "id")
    private long id;
fangyeqing authored
17
    @Basic
zhaoyue authored
18 19
    @Column(name = "name")
    private String name;
fangyeqing authored
20
    @Basic
zhaoyue authored
21 22
    @Column(name = "parent_id")
    private long parentId;
fangyeqing authored
23
    @Basic
zhaoyue authored
24 25
    @Column(name = "province_id")
    private long provinceId;
fangyeqing authored
26
    @Basic
zhaoyue authored
27 28
    @Column(name = "city_id")
    private long cityId;
fangyeqing authored
29
    @Basic
zhaoyue authored
30 31
    @Column(name = "country_id")
    private long countryId;
fangyeqing authored
32
    @Basic
zhaoyue authored
33 34
    @Column(name = "company_code")
    private long companyCode;
fangyeqing authored
35
    @Basic
zhaoyue authored
36 37
    @Column(name = "company_type")
    private int companyType;
fangyeqing authored
38
    @Basic
zhaoyue authored
39 40
    @Column(name = "level")
    private int level;
fangyeqing authored
41
    @Basic
zhaoyue authored
42 43
    @Column(name = "show_level")
    private int showLevel;
fangyeqing authored
44
    @Basic
zhaoyue authored
45 46
    @Column(name = "status")
    private int status;
zhaoyue authored
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 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134

    public long getId() {
        return id;
    }

    public void setId(long id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public long getParentId() {
        return parentId;
    }

    public void setParentId(long parentId) {
        this.parentId = parentId;
    }

    public long getProvinceId() {
        return provinceId;
    }

    public void setProvinceId(long provinceId) {
        this.provinceId = provinceId;
    }

    public long getCityId() {
        return cityId;
    }

    public void setCityId(long cityId) {
        this.cityId = cityId;
    }

    public long getCountryId() {
        return countryId;
    }

    public void setCountryId(long countryId) {
        this.countryId = countryId;
    }

    public long getCompanyCode() {
        return companyCode;
    }

    public void setCompanyCode(long companyCode) {
        this.companyCode = companyCode;
    }

    public int getCompanyType() {
        return companyType;
    }

    public void setCompanyType(int companyType) {
        this.companyType = companyType;
    }

    public int getLevel() {
        return level;
    }

    public void setLevel(int level) {
        this.level = level;
    }

    public int getShowLevel() {
        return showLevel;
    }

    public void setShowLevel(int showLevel) {
        this.showLevel = showLevel;
    }

    public int getStatus() {
        return status;
    }

    public void setStatus(int status) {
        this.status = status;
    }
zhaoyue authored
135
}