Businese.BillDailyRepDAL.QueryObject

Parameters:

Name Type Description
Condition Condition
RecordCountLimit Int32

Returns: List<BillDailyRep>

Sample:

Request:

    {
    "jsonrpc": "2.0",
    "method": "Businese.BillDailyRepDAL.QueryObject",
    "params": {
        "Condition" : {
          "Type": "Eteam.ORM.Common.Condition, Eteam.ORM.Common",
          "Context": "",
          "AndOr": "",
          "NoLock": false,
          "Items": []
        } /* [Condition]*/,
        "RecordCountLimit" : 1 /* [Int32]*/
        
    },
    "id": 1,
    "tags": {
        "usertoken": "",
        "sessionid": ""
    }
  }
Response:
{
  "jsonrpc": "2.0",
  "result": [
    {
      "RecordId": ""  /*单据Id*/,
      "BillDate": "2026-03-21T18:59:12.2554783+08:00"  /*单据日期*/,
      "FeeBegin": 0.0  /*期初备用金*/,
      "FeeEnd": 0.0  /*期末备用金*/,
      "State": 1  /*State*/,
      "Creator": ""  /*录入人*/,
      "CreatorName": ""  /*录入人姓名*/,
      "CreateTime": "2026-03-21T18:59:12.2554783+08:00"  /*录入时间*/,
      "LastModifier": ""  /*最后修改人*/,
      "LastModifierName": ""  /*最后修改人姓名*/,
      "LastModifyTime": "2026-03-21T18:59:12.2554783+08:00"  /*最后修改时间*/,
      "Auditor": ""  /*审核人*/,
      "AuditorName": ""  /*审核人姓名*/,
      "AuditTime": "2026-03-21T18:59:12.2554783+08:00"  /*审核时间*/,
      "TimeStamp": ""  /*时间戳*/,
      "ChangeType": 0,
      "IdValues": [
        ""
      ],
      "iState": 1,
      "RPInfos": [
        {
          "DtlId": ""  /*明细Id*/,
          "RecordId": ""  /*单据Id*/,
          "PayModeId": 1  /*支付方式Id*/,
          "PayMode": ""  /*支付方式*/,
          "Begin": 0.0,
          "In1": 0.0  /*收入(业务)*/,
          "In2": 0.0  /*收入(银行利息)*/,
          "In3": 0.0  /*收入(其它)*/,
          "In4": 0.0  /*收入(备用金)*/,
          "Out1": 0.0  /*支出(备用金)*/,
          "Out2": 0.0  /*支出(汇款--公)*/,
          "Out3": 0.0  /*支出(汇款--个人)*/,
          "Out4": 0.0  /*支出(汇款--其它)*/,
          "Out5": 0.0  /*支出(退备用金)*/,
          "End": 0.0  /*结余*/,
          "Remark": ""  /*备注*/,
          "ChangeType": 0
        }
      ]  /*收支情况*/,
      "RPDtls": [
        {
          "DtlId": ""  /*明细Id*/,
          "RecordId": ""  /*单据Id*/,
          "FeeIn": 0.0  /*收入*/,
          "FeeOut": 0.0  /*支出*/,
          "Remark": ""  /*摘要*/,
          "ChangeType": 0
        }
      ]  /*收支明细*/,
      "FeeDtls": [
        {
          "DtlId": ""  /*明细Id*/,
          "RecordId": ""  /*单据Id*/,
          "FeeIn": 0.0  /*收入*/,
          "FeeOut": 0.0  /*支出*/,
          "Remark": ""  /*摘要*/,
          "ChangeType": 0
        }
      ]  /*备用金明细*/,
      "IsIni": false  /*是否期初*/
    }
  ],
  "error": null,
  "id": 1
}