All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkdatacenter_1_0.models.GetBiddingInfoResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy