|
@@ -0,0 +1,214 @@
|
|
|
+package com.hcloud.microservice.goods.facade.entity;
|
|
|
+
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+public class GoodsDealer {
|
|
|
+ private String guid;
|
|
|
+
|
|
|
+ private String fkOrgGuid;
|
|
|
+
|
|
|
+ private String dealerCode;
|
|
|
+
|
|
|
+ private String dealerName;
|
|
|
+
|
|
|
+ private String linkPhone;
|
|
|
+
|
|
|
+ private String fkPostionId;
|
|
|
+
|
|
|
+ private String dealerAddress;
|
|
|
+
|
|
|
+ private String latitudeLongitude;
|
|
|
+
|
|
|
+ private Integer state;
|
|
|
+
|
|
|
+ private String createUser;
|
|
|
+
|
|
|
+ private Date createTime;
|
|
|
+
|
|
|
+ private String modifiedUser;
|
|
|
+
|
|
|
+ private Date modifiedTime;
|
|
|
+
|
|
|
+ private String remark;
|
|
|
+
|
|
|
+ private String provinceId;
|
|
|
+
|
|
|
+ private String cityId;
|
|
|
+
|
|
|
+ private String countyId;
|
|
|
+
|
|
|
+ private String provinceName;
|
|
|
+
|
|
|
+ private String cityName;
|
|
|
+
|
|
|
+ private String countyName;
|
|
|
+
|
|
|
+ public String getGuid() {
|
|
|
+ return guid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGuid(String guid) {
|
|
|
+ this.guid = guid == null ? null : guid.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFkOrgGuid() {
|
|
|
+ return fkOrgGuid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFkOrgGuid(String fkOrgGuid) {
|
|
|
+ this.fkOrgGuid = fkOrgGuid == null ? null : fkOrgGuid.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDealerCode() {
|
|
|
+ return dealerCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDealerCode(String dealerCode) {
|
|
|
+ this.dealerCode = dealerCode == null ? null : dealerCode.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDealerName() {
|
|
|
+ return dealerName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDealerName(String dealerName) {
|
|
|
+ this.dealerName = dealerName == null ? null : dealerName.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLinkPhone() {
|
|
|
+ return linkPhone;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLinkPhone(String linkPhone) {
|
|
|
+ this.linkPhone = linkPhone == null ? null : linkPhone.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFkPostionId() {
|
|
|
+ return fkPostionId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFkPostionId(String fkPostionId) {
|
|
|
+ this.fkPostionId = fkPostionId == null ? null : fkPostionId.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDealerAddress() {
|
|
|
+ String address = this.provinceName;
|
|
|
+ if(this.cityName != null) {
|
|
|
+ address += "-" + this.cityName;
|
|
|
+ }
|
|
|
+ if(this.countyName != null) {
|
|
|
+ address += "-" + this.countyName;
|
|
|
+ }
|
|
|
+ this.dealerAddress = address;
|
|
|
+ return dealerAddress;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDealerAddress(String dealerAddress) {
|
|
|
+ this.dealerAddress = dealerAddress == null ? null : dealerAddress.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLatitudeLongitude() {
|
|
|
+ return latitudeLongitude;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLatitudeLongitude(String latitudeLongitude) {
|
|
|
+ this.latitudeLongitude = latitudeLongitude == null ? null : latitudeLongitude.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getState() {
|
|
|
+ return state;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setState(Integer state) {
|
|
|
+ this.state = state;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCreateUser() {
|
|
|
+ return createUser;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateUser(String createUser) {
|
|
|
+ this.createUser = createUser == null ? null : createUser.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getCreateTime() {
|
|
|
+ return createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateTime(Date createTime) {
|
|
|
+ this.createTime = createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getModifiedUser() {
|
|
|
+ return modifiedUser;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setModifiedUser(String modifiedUser) {
|
|
|
+ this.modifiedUser = modifiedUser == null ? null : modifiedUser.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getModifiedTime() {
|
|
|
+ return modifiedTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setModifiedTime(Date modifiedTime) {
|
|
|
+ this.modifiedTime = modifiedTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRemark() {
|
|
|
+ return remark;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRemark(String remark) {
|
|
|
+ this.remark = remark == null ? null : remark.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProvinceId() {
|
|
|
+ return provinceId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProvinceId(String provinceId) {
|
|
|
+ this.provinceId = provinceId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCityId() {
|
|
|
+ return cityId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCityId(String cityId) {
|
|
|
+ this.cityId = cityId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCountyId() {
|
|
|
+ return countyId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCountyId(String countyId) {
|
|
|
+ this.countyId = countyId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProvinceName() {
|
|
|
+ return provinceName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProvinceName(String provinceName) {
|
|
|
+ this.provinceName = provinceName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCityName() {
|
|
|
+ return cityName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCityName(String cityName) {
|
|
|
+ this.cityName = cityName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCountyName() {
|
|
|
+ return countyName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCountyName(String countyName) {
|
|
|
+ this.countyName = countyName;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|