addressId; } public function setAddressId(int $addressId): AddressEntity { $this->addressId = $addressId; return $this; } public function getUid(): int { return $this->uid; } public function setUid(int $uid): AddressEntity { $this->uid = $uid; return $this; } public function getRealName(): string { return $this->realName; } public function setRealName(string $realName): AddressEntity { $this->realName = $realName; return $this; } public function getPhone(): string { return $this->phone; } public function setPhone(string $phone): AddressEntity { $this->phone = $phone; return $this; } public function getProvince(): string { return $this->province; } public function setProvince(string $province): AddressEntity { $this->province = $province; return $this; } public function getCity(): string { return $this->city; } public function setCity(string $city): AddressEntity { $this->city = $city; return $this; } public function getCityId(): int { return $this->cityId; } public function setCityId(int $cityId): AddressEntity { $this->cityId = $cityId; return $this; } public function getDistrict(): string { return $this->district; } public function setDistrict(string $district): AddressEntity { $this->district = $district; return $this; } public function getVillage(): string { return $this->village; } public function setVillage(string $village): AddressEntity { $this->village = $village; return $this; } public function getVillageId(): int { return $this->villageId; } public function setVillageId(int $villageId): AddressEntity { $this->villageId = $villageId; return $this; } public function getDetail(): string { return $this->detail; } public function setDetail(string $detail): AddressEntity { $this->detail = $detail; return $this; } public function getPostCode(): int { return $this->postCode; } public function setPostCode(int $postCode): AddressEntity { $this->postCode = $postCode; return $this; } public function getLongitude(): string { return $this->longitude; } public function setLongitude(string $longitude): AddressEntity { $this->longitude = $longitude; return $this; } public function getLatitude(): string { return $this->latitude; } public function setLatitude(string $latitude): AddressEntity { $this->latitude = $latitude; return $this; } public function getIsDefault(): int { return $this->isDefault; } public function setIsDefault(int $isDefault): AddressEntity { $this->isDefault = $isDefault; return $this; } public function getIsDel(): int { return $this->isDel; } public function setIsDel(int $isDel): AddressEntity { $this->isDel = $isDel; return $this; } /** * @return string */ public function getCreateTime(): ?string { return $this->createTime; } /** * @param string $createTime * @return AddressEntity */ public function setCreateTime(string $createTime): AddressEntity { $this->createTime = $createTime; return $this; } public function getCodeList(): string { return $this->codeList; } public function setCodeList(string $codeList): AddressEntity { $this->codeListByDecode = explode(',', $codeList); $this->codeList = $codeList; return $this; } public function getCodeListByDecode(): array { return $this->codeListByDecode; } public function setCodeListByDecode(array $codeListByDecode): AddressEntity { $this->codeListByDecode = $codeListByDecode; $this->codeList = implode(',', $codeListByDecode); return $this; } }