GET api/BIMainPage/SalesData
返回销售数据
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
ParamModal |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
{ "ErrorMsg": "sample string 1", "SmSale": { "Tot_Atm": 1.0, "PTot_Atm": 2, "Rate": 3.0 }, "SmShip": { "Tot_Atm": 1.0, "PTot_Atm": 2, "Rate": 3.0 }, "SmProfit": { "Tot_Atm": 1.0, "PTot_Atm": 2, "Rate": 3.0 } }
application/xml, text/xml
Sample:
<SaleSmModal xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models.BI"> <ErrorMsg>sample string 1</ErrorMsg> <SmProfit> <PTot_Atm>2</PTot_Atm> <Rate>3</Rate> <Tot_Atm>1</Tot_Atm> </SmProfit> <SmSale> <PTot_Atm>2</PTot_Atm> <Rate>3</Rate> <Tot_Atm>1</Tot_Atm> </SmSale> <SmShip> <PTot_Atm>2</PTot_Atm> <Rate>3</Rate> <Tot_Atm>1</Tot_Atm> </SmShip> </SaleSmModal>