POST api/BBS/SumPostList

帖子发布信息汇总

Request Information

URI Parameters

None.

Body Parameters

请求数据

SumPostRequest
NameDescriptionTypeAdditional information
customer

公司名称

string

None.

emp_name

客服

string

None.

goods_name

产品名称

string

None.

post_type

类型:1-询价 2-直接下单 3-招标

integer

None.

product_manager_id

产品经理

integer

None.

is_tax

是否含税:0-不含税 1-含税

integer

None.

pm_state

产品经理对价格类型帖子维护状态:未处理=0,跟进中=1,已成交=2,未成交=3

integer

None.

page

页码

integer

None.

page_size

每页显示条数

integer

None.

user_id

当前登录者Id

string

None.

token

token

string

None.

Request Formats

application/json, text/json

Sample:
{
  "customer": "sample string 1",
  "emp_name": "sample string 2",
  "goods_name": "sample string 3",
  "post_type": 1,
  "product_manager_id": 1,
  "is_tax": 1,
  "pm_state": 1,
  "page": 4,
  "page_size": 5,
  "user_id": "sample string 6",
  "token": "sample string 7"
}

application/xml, text/xml

Sample:
<SumPostRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BBS.Model">
  <token>sample string 7</token>
  <user_id>sample string 6</user_id>
  <page>4</page>
  <page_size>5</page_size>
  <customer>sample string 1</customer>
  <emp_name>sample string 2</emp_name>
  <goods_name>sample string 3</goods_name>
  <is_tax>1</is_tax>
  <pm_state>1</pm_state>
  <post_type>1</post_type>
  <product_manager_id>1</product_manager_id>
</SumPostRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'SumPostRequest'.

Response Information

Resource Description

帖子发布信息汇总

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.