部门交易金额代码框架

This commit is contained in:
zhonghua.li
2026-04-30 08:15:53 +08:00
parent 46e98e664d
commit ed97d027f6
2 changed files with 294 additions and 0 deletions

View File

@@ -83,3 +83,17 @@ export function listYestodayBuyPositiveAndDailySellZero(startDate, endDate, tena
}
})
}
/** 按日期范围统计本人及递归下级交易金额(不含 report_sum */
export function statsUserTradeWithTeamByDateRangeAndTenant(startDate, endDate, tenantId) {
return request({
url: '/lbDailyUserTradeReport/stats/user-trade-with-team/by-date-range-and-tenant',
method: 'get',
params: {
startDate,
endDate,
tenantId
},
timeout: 120000
})
}