GET api/DrawBack/GetDrawBackTruckProfit?begin={begin}&end={end}

获取退税,拖车业绩和提成

Request Information

URI Parameters

NameDescriptionTypeAdditional information
begin

开始时间(YYYY-mm-dd)

date

None.

end

结束时间(YYYY-mm-dd)

date

None.

Body Parameters

None.

Response Information

Resource Description

InfoResultOfDrawBackTruckProfitDto
NameDescriptionTypeAdditional information
Data

DrawBackTruckProfitDto

None.

IsSuccess

是否成功:true:成功,false:失败

boolean

None.

Msg

返回消息

string

None.

Extra

特定信息

string

None.

Code

内部代码:[成功 000000|失败 000001|未登陆/未授权 000002]

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Data": {
    "SalesmanId": 1,
    "ChinaName": "sample string 1",
    "DProfit": 1.0,
    "DCommission": 1.0,
    "TProfit": 1.0,
    "TCommission": 1.0
  },
  "IsSuccess": true,
  "Msg": "sample string 2",
  "Extra": "sample string 3",
  "Code": "sample string 4"
}

application/xml, text/xml

Sample:
<InfoResultOfDrawBackTruckProfitDto8taVmWcU xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CMS.Core.ShareData">
  <Code>sample string 4</Code>
  <Extra>sample string 3</Extra>
  <IsSuccess>true</IsSuccess>
  <Msg>sample string 2</Msg>
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/CMS.Domain.Dto">
    <d2p1:ChinaName>sample string 1</d2p1:ChinaName>
    <d2p1:DCommission>1</d2p1:DCommission>
    <d2p1:DProfit>1</d2p1:DProfit>
    <d2p1:SalesmanId>1</d2p1:SalesmanId>
    <d2p1:TCommission>1</d2p1:TCommission>
    <d2p1:TProfit>1</d2p1:TProfit>
  </Data>
</InfoResultOfDrawBackTruckProfitDto8taVmWcU>