package cn.flightfeather.supervision.domain.entity;
|
|
import javax.persistence.*;
|
|
@Table(name = "sm_t_district")
|
public class District {
|
@Id
|
@Column(name = "D_DistrictID")
|
private Integer dDistrictid;
|
|
@Column(name = "P_ProvinceID")
|
private Integer pProvinceid;
|
|
@Column(name = "C_CityID")
|
private Integer cCityid;
|
|
@Column(name = "D_DistrictCode")
|
private String dDistrictcode;
|
|
@Column(name = "D_DistrictName")
|
private String dDistrictname;
|
|
@Column(name = "D_Station")
|
private String dStation;
|
|
/**
|
* @return D_DistrictID
|
*/
|
public Integer getdDistrictid() {
|
return dDistrictid;
|
}
|
|
/**
|
* @param dDistrictid
|
*/
|
public void setdDistrictid(Integer dDistrictid) {
|
this.dDistrictid = dDistrictid;
|
}
|
|
/**
|
* @return P_ProvinceID
|
*/
|
public Integer getpProvinceid() {
|
return pProvinceid;
|
}
|
|
/**
|
* @param pProvinceid
|
*/
|
public void setpProvinceid(Integer pProvinceid) {
|
this.pProvinceid = pProvinceid;
|
}
|
|
/**
|
* @return C_CityID
|
*/
|
public Integer getcCityid() {
|
return cCityid;
|
}
|
|
/**
|
* @param cCityid
|
*/
|
public void setcCityid(Integer cCityid) {
|
this.cCityid = cCityid;
|
}
|
|
/**
|
* @return D_DistrictCode
|
*/
|
public String getdDistrictcode() {
|
return dDistrictcode;
|
}
|
|
/**
|
* @param dDistrictcode
|
*/
|
public void setdDistrictcode(String dDistrictcode) {
|
this.dDistrictcode = dDistrictcode == null ? null : dDistrictcode.trim();
|
}
|
|
/**
|
* @return D_DistrictName
|
*/
|
public String getdDistrictname() {
|
return dDistrictname;
|
}
|
|
/**
|
* @param dDistrictname
|
*/
|
public void setdDistrictname(String dDistrictname) {
|
this.dDistrictname = dDistrictname == null ? null : dDistrictname.trim();
|
}
|
|
/**
|
* @return D_Station
|
*/
|
public String getdStation() {
|
return dStation;
|
}
|
|
/**
|
* @param dStation
|
*/
|
public void setdStation(String dStation) {
|
this.dStation = dStation == null ? null : dStation.trim();
|
}
|
}
|