cn.com.antcloud.api.riskplus.v1_0.model.RtopCrowdRiskSummaryResp Maven / Gradle / Ivy
//
// 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;
import java.util.Date;
import java.util.List;
import javax.validation.constraints.NotNull;
/**
* 企业涉众风险详细信息 */
public class RtopCrowdRiskSummaryResp {
private String activeCity;
private String activeCounty;
private String activeProvince;
private List clueTags;
@NotNull
private String companyId;
@NotNull
private String companyName;
private String crowdRiskLevel;
private Long crowdRiskScore;
private String crowdRiskType;
private Date detectedTime;
private Long moneyInvolved;
private Long peopleInvolved;
private String registeredCity;
private String registeredCounty;
private String registeredProvince;
/**
* 活跃市 */
public String getActiveCity() {
return this.activeCity;
}
/**
* 活跃市 */
public void setActiveCity(String activeCity) {
this.activeCity = activeCity;
}
/**
* 活跃县 */
public String getActiveCounty() {
return this.activeCounty;
}
/**
* 活跃县 */
public void setActiveCounty(String activeCounty) {
this.activeCounty = activeCounty;
}
/**
* 活跃省 */
public String getActiveProvince() {
return this.activeProvince;
}
/**
* 活跃省 */
public void setActiveProvince(String activeProvince) {
this.activeProvince = activeProvince;
}
/**
* 风险标签 */
public List getClueTags() {
return this.clueTags;
}
/**
* 风险标签 */
public void setClueTags(List clueTags) {
this.clueTags = clueTags;
}
/**
* 企业ID */
public String getCompanyId() {
return this.companyId;
}
/**
* 企业ID */
public void setCompanyId(String companyId) {
this.companyId = companyId;
}
/**
* 企业名称 */
public String getCompanyName() {
return this.companyName;
}
/**
* 企业名称 */
public void setCompanyName(String companyName) {
this.companyName = companyName;
}
/**
* 风险等级 */
public String getCrowdRiskLevel() {
return this.crowdRiskLevel;
}
/**
* 风险等级 */
public void setCrowdRiskLevel(String crowdRiskLevel) {
this.crowdRiskLevel = crowdRiskLevel;
}
/**
* 涉众风险分数 */
public Long getCrowdRiskScore() {
return this.crowdRiskScore;
}
/**
* 涉众风险分数 */
public void setCrowdRiskScore(Long crowdRiskScore) {
this.crowdRiskScore = crowdRiskScore;
}
/**
* 涉众风险类型 */
public String getCrowdRiskType() {
return this.crowdRiskType;
}
/**
* 涉众风险类型 */
public void setCrowdRiskType(String crowdRiskType) {
this.crowdRiskType = crowdRiskType;
}
/**
* 发现时间 */
public Date getDetectedTime() {
return this.detectedTime;
}
/**
* 发现时间 */
public void setDetectedTime(Date detectedTime) {
this.detectedTime = detectedTime;
}
/**
* 影响金额 */
public Long getMoneyInvolved() {
return this.moneyInvolved;
}
/**
* 影响金额 */
public void setMoneyInvolved(Long moneyInvolved) {
this.moneyInvolved = moneyInvolved;
}
/**
* 影响人数 */
public Long getPeopleInvolved() {
return this.peopleInvolved;
}
/**
* 影响人数 */
public void setPeopleInvolved(Long peopleInvolved) {
this.peopleInvolved = peopleInvolved;
}
/**
* 注册市 */
public String getRegisteredCity() {
return this.registeredCity;
}
/**
* 注册市 */
public void setRegisteredCity(String registeredCity) {
this.registeredCity = registeredCity;
}
/**
* 注册县 */
public String getRegisteredCounty() {
return this.registeredCounty;
}
/**
* 注册县 */
public void setRegisteredCounty(String registeredCounty) {
this.registeredCounty = registeredCounty;
}
/**
* 注册省 */
public String getRegisteredProvince() {
return this.registeredProvince;
}
/**
* 注册省 */
public void setRegisteredProvince(String registeredProvince) {
this.registeredProvince = registeredProvince;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy