package cn.flightfeather.supervision.domain.entity;
|
|
import javax.persistence.*;
|
|
@Table(name = "sm_t_town")
|
public class Town {
|
@Id
|
@Column(name = "T_TownID")
|
private Integer tTownid;
|
|
@Column(name = "D_DistrictID")
|
private Integer dDistrictid;
|
|
@Column(name = "C_CityID")
|
private Integer cCityid;
|
|
@Column(name = "P_ProvinceID")
|
private Integer pProvinceid;
|
|
@Column(name = "T_TownCode")
|
private String tTowncode;
|
|
@Column(name = "T_TownName")
|
private String tTownname;
|
|
@Column(name = "T_Station")
|
private String tStation;
|
|
/**
|
* @return T_TownID
|
*/
|
public Integer gettTownid() {
|
return tTownid;
|
}
|
|
/**
|
* @param tTownid
|
*/
|
public void settTownid(Integer tTownid) {
|
this.tTownid = tTownid;
|
}
|
|
/**
|
* @return D_DistrictID
|
*/
|
public Integer getdDistrictid() {
|
return dDistrictid;
|
}
|
|
/**
|
* @param dDistrictid
|
*/
|
public void setdDistrictid(Integer dDistrictid) {
|
this.dDistrictid = dDistrictid;
|
}
|
|
/**
|
* @return C_CityID
|
*/
|
public Integer getcCityid() {
|
return cCityid;
|
}
|
|
/**
|
* @param cCityid
|
*/
|
public void setcCityid(Integer cCityid) {
|
this.cCityid = cCityid;
|
}
|
|
/**
|
* @return P_ProvinceID
|
*/
|
public Integer getpProvinceid() {
|
return pProvinceid;
|
}
|
|
/**
|
* @param pProvinceid
|
*/
|
public void setpProvinceid(Integer pProvinceid) {
|
this.pProvinceid = pProvinceid;
|
}
|
|
/**
|
* @return T_TownCode
|
*/
|
public String gettTowncode() {
|
return tTowncode;
|
}
|
|
/**
|
* @param tTowncode
|
*/
|
public void settTowncode(String tTowncode) {
|
this.tTowncode = tTowncode == null ? null : tTowncode.trim();
|
}
|
|
/**
|
* @return T_TownName
|
*/
|
public String gettTownname() {
|
return tTownname;
|
}
|
|
/**
|
* @param tTownname
|
*/
|
public void settTownname(String tTownname) {
|
this.tTownname = tTownname == null ? null : tTownname.trim();
|
}
|
|
/**
|
* @return T_Station
|
*/
|
public String gettStation() {
|
return tStation;
|
}
|
|
/**
|
* @param tStation
|
*/
|
public void settStation(String tStation) {
|
this.tStation = tStation == null ? null : tStation.trim();
|
}
|
}
|