Businese.BonusDAL.QueryBonus

Parameters:

Name Type Description
Year Int32
Month Int32
BonusType Nullable<BonusType>

Returns: List<DealerBonus>

Sample:

Request:

    {
    "jsonrpc": "2.0",
    "method": "Businese.BonusDAL.QueryBonus",
    "params": {
        "Year" : 1 /* [Int32]*/,
        "Month" : 1 /* [Int32]*/,
        "BonusType" : 0 /* [Nullable<BonusType>]*/
        
    },
    "id": 1,
    "tags": {
        "usertoken": "",
        "sessionid": ""
    }
  }
Response:
{
  "jsonrpc": "2.0",
  "result": [
    {
      "Id": ""  /*FId*/,
      "Year": 1  /*年度*/,
      "Month": 1  /*月份*/,
      "DealerId": ""  /*经销商Id*/,
      "PayerId": ""  /*发放人Id*/,
      "OrderDealerId": ""  /*订单下单人的Id*/,
      "BonusType": 0  /*奖金类别*/,
      "BonusAmt": 0.0  /*应得奖金*/,
      "DealerCode": "",
      "DealerName": "",
      "PayerCode": "",
      "PayerName": "",
      "IdValues": [
        ""
      ]
    }
  ],
  "error": null,
  "id": 1
}