lzh-common 0.0.600 → 0.0.602
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { ITenantStatsDailyDB } from "./base.js";
|
|
2
|
-
/**
|
|
2
|
+
/** 请求参数:所有租户每天收支统计 */
|
|
3
3
|
export type ITenantStatsDailyIncomeExpenseReq = {
|
|
4
4
|
/** 统计开始日期,格式:YYYY-MM-DD */
|
|
5
5
|
stat_date_start?: ITenantStatsDailyDB['stat_date'];
|
|
6
6
|
/** 统计结束日期,格式:YYYY-MM-DD */
|
|
7
7
|
stat_date_end?: ITenantStatsDailyDB['stat_date'];
|
|
8
8
|
};
|
|
9
|
-
/**
|
|
9
|
+
/** 返回数据:所有租户每天收支统计 */
|
|
10
10
|
export type ITenantStatsDailyIncomeExpenseRes = {
|
|
11
11
|
/** 统计日期,格式:YYYY-MM-DD */
|
|
12
12
|
date: string;
|