GET Api/steel/StockPaintDay?BegTime={BegTime}&EndTime={EndTime}&SelType={SelType}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| BegTime | date |
Required |
|
| EndTime | date |
Required |
|
| SelType | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of PaintDay| Name | Description | Type | Additional information |
|---|---|---|---|
| pname | string |
None. |
|
| ptype | string |
None. |
|
| qty30 | decimal number |
None. |
|
| qty60 | decimal number |
None. |
|
| qty90 | decimal number |
None. |
|
| qty120 | decimal number |
None. |
|
| qty150 | decimal number |
None. |
|
| qty180 | decimal number |
None. |
|
| qty181 | decimal number |
None. |
|
| qty | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"pname": "sample string 1",
"ptype": "sample string 2",
"qty30": 3.1,
"qty60": 4.1,
"qty90": 5.1,
"qty120": 6.1,
"qty150": 7.1,
"qty180": 8.1,
"qty181": 9.1,
"qty": 10.1
},
{
"pname": "sample string 1",
"ptype": "sample string 2",
"qty30": 3.1,
"qty60": 4.1,
"qty90": 5.1,
"qty120": 6.1,
"qty150": 7.1,
"qty180": 8.1,
"qty181": 9.1,
"qty": 10.1
}
]
application/xml, text/xml
Sample:
<ArrayOfPaintDay xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MDST">
<PaintDay>
<pname>sample string 1</pname>
<ptype>sample string 2</ptype>
<qty>10.1</qty>
<qty120>6.1</qty120>
<qty150>7.1</qty150>
<qty180>8.1</qty180>
<qty181>9.1</qty181>
<qty30>3.1</qty30>
<qty60>4.1</qty60>
<qty90>5.1</qty90>
</PaintDay>
<PaintDay>
<pname>sample string 1</pname>
<ptype>sample string 2</ptype>
<qty>10.1</qty>
<qty120>6.1</qty120>
<qty150>7.1</qty150>
<qty180>8.1</qty180>
<qty181>9.1</qty181>
<qty30>3.1</qty30>
<qty60>4.1</qty60>
<qty90>5.1</qty90>
</PaintDay>
</ArrayOfPaintDay>