POST BaseData/CompanyInfo/View
Request Information
URI Parameters
None.
Body Parameters
BasePageCompany| Name | Description | Type | Additional information |
|---|---|---|---|
| CompanyName | string |
None. |
|
| ActionUser | string |
None. |
|
| IID | integer |
None. |
|
| PrjtAbbr | string |
None. |
|
| exportfile | string |
None. |
|
| SortList | Collection of BaseSort |
None. |
|
| ScreenList | Collection of BaseScreen |
None. |
|
| PageSize | integer |
None. |
|
| PageIndex | integer |
None. |
|
| QueryKey | string |
None. |
|
| StartTime | string |
None. |
|
| EndTime | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CompanyName": "sample string 1",
"ActionUser": "sample string 2",
"IID": 3,
"PrjtAbbr": "sample string 4",
"exportfile": "sample string 5",
"SortList": [
{
"SortName": "sample string 1",
"Asc": true
},
{
"SortName": "sample string 1",
"Asc": true
}
],
"ScreenList": [
{
"ScreenName": "sample string 1",
"ScreenValue": "sample string 2"
},
{
"ScreenName": "sample string 1",
"ScreenValue": "sample string 2"
}
],
"PageSize": 6,
"PageIndex": 7,
"QueryKey": "sample string 8",
"StartTime": "sample string 9",
"EndTime": "sample string 10"
}
application/xml, text/xml
Sample:
<BasePageCompany xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WeldingAPI.Models">
<EndTime xmlns="http://schemas.datacontract.org/2004/07/">sample string 10</EndTime>
<IID xmlns="http://schemas.datacontract.org/2004/07/">0</IID>
<PageIndex xmlns="http://schemas.datacontract.org/2004/07/">7</PageIndex>
<PageSize xmlns="http://schemas.datacontract.org/2004/07/">6</PageSize>
<QueryKey xmlns="http://schemas.datacontract.org/2004/07/">sample string 8</QueryKey>
<ScreenList xmlns:d2p1="http://schemas.datacontract.org/2004/07/WeldingAPI.Models" i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/" />
<SortList xmlns:d2p1="http://schemas.datacontract.org/2004/07/WeldingAPI.Models" i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/" />
<StartTime xmlns="http://schemas.datacontract.org/2004/07/">sample string 9</StartTime>
<ActionUser>sample string 2</ActionUser>
<CompanyName>sample string 1</CompanyName>
<IID>3</IID>
<PrjtAbbr>sample string 4</PrjtAbbr>
<ScreenList>
<BaseScreen>
<ScreenName>sample string 1</ScreenName>
<ScreenValue>sample string 2</ScreenValue>
</BaseScreen>
<BaseScreen>
<ScreenName>sample string 1</ScreenName>
<ScreenValue>sample string 2</ScreenValue>
</BaseScreen>
</ScreenList>
<SortList>
<BaseSort>
<Asc>true</Asc>
<SortName>sample string 1</SortName>
</BaseSort>
<BaseSort>
<Asc>true</Asc>
<SortName>sample string 1</SortName>
</BaseSort>
</SortList>
<exportfile>sample string 5</exportfile>
</BasePageCompany>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
BaseResultQueryOfCompanyInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | integer |
None. |
|
| Msg | string |
None. |
|
| DataContent | CompanyInfo |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": 1,
"Msg": "sample string 2",
"DataContent": {
"Sys_Company_Info": {
"IID": 1,
"company_name": "sample string 2",
"company_name_en": "sample string 3",
"address": "sample string 4",
"address_en": "sample string 5",
"logo1": "QEA=",
"logo1_path": "sample string 6",
"logo2": "QEA=",
"logo2_path": "sample string 7",
"logo3": "QEA=",
"logo3_path": "sample string 8",
"create_time": "2026-04-16 19:57:49",
"creater": "sample string 9",
"modify_time": "2026-04-16 19:57:49",
"modifier": "sample string 10"
},
"logo1_path": "sample string 1",
"logo2_path": "sample string 2",
"logo3_path": "sample string 3"
}
}
application/xml, text/xml
Sample:
<BaseResultQueryOfCompanyInfoAJQoDpck xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WeldingAPI.Models">
<DataContent>
<Sys_Company_Info xmlns:d3p1="http://schemas.datacontract.org/2004/07/WeldingAPI.Models.EF">
<d3p1:IID>1</d3p1:IID>
<d3p1:address>sample string 4</d3p1:address>
<d3p1:address_en>sample string 5</d3p1:address_en>
<d3p1:company_name>sample string 2</d3p1:company_name>
<d3p1:company_name_en>sample string 3</d3p1:company_name_en>
<d3p1:create_time>2026-04-16T19:57:49.3300719+08:00</d3p1:create_time>
<d3p1:creater>sample string 9</d3p1:creater>
<d3p1:logo1>QEA=</d3p1:logo1>
<d3p1:logo1_path>sample string 6</d3p1:logo1_path>
<d3p1:logo2>QEA=</d3p1:logo2>
<d3p1:logo2_path>sample string 7</d3p1:logo2_path>
<d3p1:logo3>QEA=</d3p1:logo3>
<d3p1:logo3_path>sample string 8</d3p1:logo3_path>
<d3p1:modifier>sample string 10</d3p1:modifier>
<d3p1:modify_time>2026-04-16T19:57:49.3300719+08:00</d3p1:modify_time>
</Sys_Company_Info>
<logo1_path>sample string 1</logo1_path>
<logo2_path>sample string 2</logo2_path>
<logo3_path>sample string 3</logo3_path>
</DataContent>
<Msg>sample string 2</Msg>
<Success>1</Success>
</BaseResultQueryOfCompanyInfoAJQoDpck>