com.aliyun.dingtalkdatacenter_1_0.models.GetBiddingInfoResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkdatacenter_1_0.models;
import com.aliyun.tea.*;
public class GetBiddingInfoResponseBody extends TeaModel {
/**
* example:
* [{ "EntName":"企业名称", "BidTitle":"标文标题", "BidType":"招标方式", "RegionName":"地区", "BidIndustry":"标的所属行业", "PublicDate":"发布时间", "ProjectNum":"项目编号", "ProjectName":"项目名称", "ProjectAmount":"项目金额", "TenderEntName":"招标企业", "AgentEntName":"代理企业", "WinnerEntName":"中标企业", "Content":"正文", "InfoType":"标文类型", "SubType":"子类型", "OpeningTime":"开标时间" }]
*/
@NameInMap("data")
public String data;
@NameInMap("total")
public Long total;
public static GetBiddingInfoResponseBody build(java.util.Map map) throws Exception {
GetBiddingInfoResponseBody self = new GetBiddingInfoResponseBody();
return TeaModel.build(map, self);
}
public GetBiddingInfoResponseBody setData(String data) {
this.data = data;
return this;
}
public String getData() {
return this.data;
}
public GetBiddingInfoResponseBody setTotal(Long total) {
this.total = total;
return this;
}
public Long getTotal() {
return this.total;
}
}