package com.java110.po.community;
|
|
import java.io.Serializable;
|
|
/**
|
* @ClassName CommunityPo
|
* @Description TODO
|
* @Author wuxw
|
* @Date 2020/5/27 14:42
|
* @Version 1.0
|
* add by wuxw 2020/5/27
|
**/
|
public class CommunityPo implements Serializable {
|
|
private String communityId;
|
private String name;
|
private String address;
|
private String nearbyLandmarks;
|
private String cityCode;
|
private String mapX;
|
private String mapY;
|
private String state;
|
private String tel;
|
private String createTime;
|
private String bId;
|
|
private String communityArea;
|
private String payFeeMonth;
|
private String feePrice;
|
|
private String qrCode;
|
|
private String takeTime;
|
|
public String getTakeTime() {
|
return takeTime;
|
}
|
|
public void setTakeTime(String takeTime) {
|
this.takeTime = takeTime == null ? null : takeTime.split(" ")[0];
|
}
|
|
private String statusCd = "0";
|
|
public String getCommunityId() {
|
return communityId;
|
}
|
|
public void setCommunityId(String communityId) {
|
this.communityId = communityId;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getAddress() {
|
return address;
|
}
|
|
public void setAddress(String address) {
|
this.address = address;
|
}
|
|
public String getNearbyLandmarks() {
|
return nearbyLandmarks;
|
}
|
|
public void setNearbyLandmarks(String nearbyLandmarks) {
|
this.nearbyLandmarks = nearbyLandmarks;
|
}
|
|
public String getCityCode() {
|
return cityCode;
|
}
|
|
public void setCityCode(String cityCode) {
|
this.cityCode = cityCode;
|
}
|
|
public String getMapX() {
|
return mapX;
|
}
|
|
public void setMapX(String mapX) {
|
this.mapX = mapX;
|
}
|
|
public String getMapY() {
|
return mapY;
|
}
|
|
public void setMapY(String mapY) {
|
this.mapY = mapY;
|
}
|
|
public String getState() {
|
return state;
|
}
|
|
public void setState(String state) {
|
this.state = state;
|
}
|
|
public String getCommunityArea() {
|
return communityArea;
|
}
|
|
public void setCommunityArea(String communityArea) {
|
this.communityArea = communityArea;
|
}
|
|
public String getTel() {
|
return tel;
|
}
|
|
public void setTel(String tel) {
|
this.tel = tel;
|
}
|
|
public String getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(String createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getbId() {
|
return bId;
|
}
|
|
public void setbId(String bId) {
|
this.bId = bId;
|
}
|
|
public String getStatusCd() {
|
return statusCd;
|
}
|
|
public void setStatusCd(String statusCd) {
|
this.statusCd = statusCd;
|
}
|
|
public String getPayFeeMonth() {
|
return payFeeMonth;
|
}
|
|
public void setPayFeeMonth(String payFeeMonth) {
|
this.payFeeMonth = payFeeMonth;
|
}
|
|
public String getFeePrice() {
|
return feePrice;
|
}
|
|
public void setFeePrice(String feePrice) {
|
this.feePrice = feePrice;
|
}
|
|
public String getQrCode() {
|
return qrCode;
|
}
|
|
public void setQrCode(String qrCode) {
|
this.qrCode = qrCode;
|
}
|
}
|