文档
测试

总账单查询

POST
/api/allBill/listByMonth

请求参数

参数名
类型
描述
必填
date
string
yyyy-MM
必填
type
int
1 订单
必填

说明 / 示例

/** * 流水总账类型——订单 * */ Integer BILL_TYPE_ORDER = 1; /** * 流水总账类型——余额 * */ Integer BILL_TYPE_NOW_MONEY = 2; /** * 流水总账类型——佣金 * */ Integer BILL_TYPE_BROKERAGE = 3; /** * 流水总账类型——佣金提现 * */ Integer BILL_TYPE_BROKERAGE_BALANCE = 4; { "limit" : 1, "page" : 1, "type" : 1 , "date" : "2020-12" } {"status":200,"success":true,"msg":"操作成功","data":{"allBills":[{"id":2,"uid":71,"type":1,"title":"1","numble":1.00,"mark":"1","createTime":1607064345000,"isDel":0,"recordId":1,"pm":1}],"allIncome":null,"allExpend":null},"total":null,"time":"2020-12-04 14:47:34"}