cn.com.antcloud.api.riskplus.v1_0.model.LiveInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of antcloud-api-riskplus Show documentation
Show all versions of antcloud-api-riskplus Show documentation
Ant Chain API SDK For Java
Copyright (c) 2020-present antgroup.com, https://www.antgroup.com
//
// Copyright (c) 2020-present antgroup.com, https://www.antgroup.com
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
//
package cn.com.antcloud.api.riskplus.v1_0.model;
import java.lang.Long;
import java.lang.String;
/**
* 天枢系统居住信息结构体 */
public class LiveInfo {
private String liveProvince;
private String liveCity;
private String liveArea;
private String liveStreet;
private String liveAddress;
private Long liveYears;
/**
* 居住省份 */
public String getLiveProvince() {
return this.liveProvince;
}
/**
* 居住省份 */
public void setLiveProvince(String liveProvince) {
this.liveProvince = liveProvince;
}
/**
* 居住城市 */
public String getLiveCity() {
return this.liveCity;
}
/**
* 居住城市 */
public void setLiveCity(String liveCity) {
this.liveCity = liveCity;
}
/**
* 居住区域 */
public String getLiveArea() {
return this.liveArea;
}
/**
* 居住区域 */
public void setLiveArea(String liveArea) {
this.liveArea = liveArea;
}
/**
* 居住街道 */
public String getLiveStreet() {
return this.liveStreet;
}
/**
* 居住街道 */
public void setLiveStreet(String liveStreet) {
this.liveStreet = liveStreet;
}
/**
* 居住详细地址 */
public String getLiveAddress() {
return this.liveAddress;
}
/**
* 居住详细地址 */
public void setLiveAddress(String liveAddress) {
this.liveAddress = liveAddress;
}
/**
* 居住年限 */
public Long getLiveYears() {
return this.liveYears;
}
/**
* 居住年限 */
public void setLiveYears(Long liveYears) {
this.liveYears = liveYears;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy