GET api/BIrule/GetRuleData

BI列表页->查询表格取得数据

Request Information

Parameters

NameDescriptionAdditional information
ParamModal

Define this parameter in the request URI.

Response Information

JSON.pagination JSON记录当前页面的页面信息 JSON.list JSON列表记录行数据

Response body formats

application/json, text/json

Sample:
{
  "pagination": {
    "total": 1,
    "pageSize": 2,
    "current": 3
  },
  "ErrorMsg": "sample string 1",
  "list": [
    {
      "key": 1,
      "disabled": true,
      "href": "sample string 3",
      "avatar": "sample string 4",
      "no": 5,
      "title": "sample string 6",
      "owner": "sample string 7",
      "description": "sample string 8",
      "callNo": 9,
      "status": 10,
      "updatedAt": "2025-05-22T16:01:57.0900255+08:00",
      "createdAt": "2025-05-22T16:01:57.0900255+08:00",
      "progress": 13
    },
    {
      "key": 1,
      "disabled": true,
      "href": "sample string 3",
      "avatar": "sample string 4",
      "no": 5,
      "title": "sample string 6",
      "owner": "sample string 7",
      "description": "sample string 8",
      "callNo": 9,
      "status": 10,
      "updatedAt": "2025-05-22T16:01:57.0900255+08:00",
      "createdAt": "2025-05-22T16:01:57.0900255+08:00",
      "progress": 13
    },
    {
      "key": 1,
      "disabled": true,
      "href": "sample string 3",
      "avatar": "sample string 4",
      "no": 5,
      "title": "sample string 6",
      "owner": "sample string 7",
      "description": "sample string 8",
      "callNo": 9,
      "status": 10,
      "updatedAt": "2025-05-22T16:01:57.0900255+08:00",
      "createdAt": "2025-05-22T16:01:57.0900255+08:00",
      "progress": 13
    }
  ]
}

application/xml, text/xml

Sample:
<RulePageModal xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models.BI">
  <ErrorMsg>sample string 1</ErrorMsg>
  <list>
    <RuleModal>
      <avatar>sample string 4</avatar>
      <callNo>9</callNo>
      <createdAt>2025-05-22T16:01:57.0900255+08:00</createdAt>
      <description>sample string 8</description>
      <disabled>true</disabled>
      <href>sample string 3</href>
      <key>1</key>
      <no>5</no>
      <owner>sample string 7</owner>
      <progress>13</progress>
      <status>10</status>
      <title>sample string 6</title>
      <updatedAt>2025-05-22T16:01:57.0900255+08:00</updatedAt>
    </RuleModal>
    <RuleModal>
      <avatar>sample string 4</avatar>
      <callNo>9</callNo>
      <createdAt>2025-05-22T16:01:57.0900255+08:00</createdAt>
      <description>sample string 8</description>
      <disabled>true</disabled>
      <href>sample string 3</href>
      <key>1</key>
      <no>5</no>
      <owner>sample string 7</owner>
      <progress>13</progress>
      <status>10</status>
      <title>sample string 6</title>
      <updatedAt>2025-05-22T16:01:57.0900255+08:00</updatedAt>
    </RuleModal>
    <RuleModal>
      <avatar>sample string 4</avatar>
      <callNo>9</callNo>
      <createdAt>2025-05-22T16:01:57.0900255+08:00</createdAt>
      <description>sample string 8</description>
      <disabled>true</disabled>
      <href>sample string 3</href>
      <key>1</key>
      <no>5</no>
      <owner>sample string 7</owner>
      <progress>13</progress>
      <status>10</status>
      <title>sample string 6</title>
      <updatedAt>2025-05-22T16:01:57.0900255+08:00</updatedAt>
    </RuleModal>
  </list>
  <pagination xmlns:d2p1="http://schemas.datacontract.org/2004/07/WfSoft.Core">
    <d2p1:current>3</d2p1:current>
    <d2p1:pageSize>2</d2p1:pageSize>
    <d2p1:total>1</d2p1:total>
  </pagination>
</RulePageModal>