项目公告列表查询接口
名称 | 类型 | 是否必须 | 示例值 | 更多限制 | 描述 |
---|---|---|---|---|---|
query_dto | ProjectNoticeListQueryDTO | 必须 | 项目公告列表查询对象 | ||
|
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
result | Result4Top | 项目公告列表对象 | |
|
1 2 3 4 5 6 7 8 9 10 11 12 | TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret); AuctionZcProjectNoticeListRequest req = new AuctionZcProjectNoticeListRequest(); AuctionZcProjectNoticeListRequest.ProjectNoticeListQueryDTO obj1 = new AuctionZcProjectNoticeListRequest.ProjectNoticeListQueryDTO(); obj1.setUserNick( "c测试账号拍卖资产006" ); obj1.setPageNo(1L); obj1.setPageSize(20L); obj1.setStartDate(StringUtils.parseDateTime( "2023-09-07 16:25:57" )); obj1.setEndDate(StringUtils.parseDateTime( "2023-09-20 16:25:57" )); obj1.setNoticeStatus(1L); req.setQueryDto(obj1); AuctionZcProjectNoticeListResponse rsp = client.execute(req); System.out.println(rsp.getBody()); |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | < auction_zc_project_notice_list_response > < result > < error_code >SYSTEM_ERROR</ error_code > < error_msg >系统异常</ error_msg > < total_item >213</ total_item > < total_page >11</ total_page > < current_page >1</ current_page > < page_size >20</ page_size > < list_data > < integer > < notice_id >13333L</ notice_id > < notice_title >测试公告</ notice_title > < notice_publish_time >2023-09-20 16:25:57</ notice_publish_time > < case_no >民2023第123号</ case_no > < item_biz_type >2</ item_biz_type > < item_biz_type_desc >普通资产</ item_biz_type_desc > < notice_status >1</ notice_status > </ integer > </ list_data > </ result > </ auction_zc_project_notice_list_response > |
1 2 3 4 5 6 | < error_response > < code >50</ code > < msg >Remote service error</ msg > < sub_code >isv.invalid-parameter</ sub_code > < sub_msg >非法参数</ sub_msg > </ error_response > |
错误码 | 错误描述 | 解决方案 |
---|