com.antgroup.antchain.openapi.riskplus.models.RtopCompanyOpinionCount Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-riskplus Show documentation
Show all versions of openapi-riskplus Show documentation
Ant Chain RISKPLUS SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.riskplus.models;
import com.aliyun.tea.*;
public class RtopCompanyOpinionCount extends TeaModel {
// 企业名称
@NameInMap("company_name")
@Validation(required = true)
public String companyName;
// 企业对应的舆情数量
@NameInMap("count")
@Validation(required = true)
public Integer count;
public static RtopCompanyOpinionCount build(java.util.Map map) throws Exception {
RtopCompanyOpinionCount self = new RtopCompanyOpinionCount();
return TeaModel.build(map, self);
}
public RtopCompanyOpinionCount setCompanyName(String companyName) {
this.companyName = companyName;
return this;
}
public String getCompanyName() {
return this.companyName;
}
public RtopCompanyOpinionCount setCount(Integer count) {
this.count = count;
return this;
}
public Integer getCount() {
return this.count;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy