POST UserRole/dataInfoListByDtl
数据权限:按明细组数据授权
Request Information
URI Parameters
None.
Body Parameters
DataInfoListByDtlReqModel| Name | Description | Type | Additional information |
|---|---|---|---|
| fClassId | integer |
None. |
|
| fDataParentId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"fClassId": 1,
"fDataParentId": 2
}
application/xml, text/xml
Sample:
<DataInfoListByDtlReqModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DbFrameModel"> <fClassId>1</fClassId> <fDataParentId>2</fDataParentId> </DataInfoListByDtlReqModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
DataInfoListByDtlResModel| Name | Description | Type | Additional information |
|---|---|---|---|
| result | Collection of t_DataInfo |
None. |
|
| error | integer |
None. |
|
| Msg | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"result": [
{
"fItemId": 1,
"fNumber": "sample string 2",
"fName": "sample string 3",
"fQryRight": true,
"fEditRight": true,
"fDeleteRight": true,
"fDtlOrParent": true
},
{
"fItemId": 1,
"fNumber": "sample string 2",
"fName": "sample string 3",
"fQryRight": true,
"fEditRight": true,
"fDeleteRight": true,
"fDtlOrParent": true
}
],
"error": 1,
"Msg": "sample string 2"
}
application/xml, text/xml
Sample:
<DataInfoListByDtlResModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BLL.Visual">
<Msg>sample string 2</Msg>
<error>1</error>
<result xmlns:d2p1="http://schemas.datacontract.org/2004/07/DbFrameModel">
<d2p1:t_DataInfo>
<d2p1:fDeleteRight>true</d2p1:fDeleteRight>
<d2p1:fDtlOrParent>true</d2p1:fDtlOrParent>
<d2p1:fEditRight>true</d2p1:fEditRight>
<d2p1:fItemId>1</d2p1:fItemId>
<d2p1:fName>sample string 3</d2p1:fName>
<d2p1:fNumber>sample string 2</d2p1:fNumber>
<d2p1:fQryRight>true</d2p1:fQryRight>
</d2p1:t_DataInfo>
<d2p1:t_DataInfo>
<d2p1:fDeleteRight>true</d2p1:fDeleteRight>
<d2p1:fDtlOrParent>true</d2p1:fDtlOrParent>
<d2p1:fEditRight>true</d2p1:fEditRight>
<d2p1:fItemId>1</d2p1:fItemId>
<d2p1:fName>sample string 3</d2p1:fName>
<d2p1:fNumber>sample string 2</d2p1:fNumber>
<d2p1:fQryRight>true</d2p1:fQryRight>
</d2p1:t_DataInfo>
</result>
</DataInfoListByDtlResModel>