新增功能:收银台
This commit is contained in:
40
src/api/shop/count/model/index.ts
Normal file
40
src/api/shop/count/model/index.ts
Normal file
@@ -0,0 +1,40 @@
|
||||
import type { PageParam } from '@/api';
|
||||
|
||||
/**
|
||||
* 商城销售统计表
|
||||
*/
|
||||
export interface Count {
|
||||
// ID
|
||||
id?: number;
|
||||
// 统计日期
|
||||
dateTime?: string;
|
||||
// 总销售额
|
||||
totalPrice?: string;
|
||||
// 今日销售额
|
||||
todayPrice?: string;
|
||||
// 总会员数
|
||||
totalUsers?: string;
|
||||
// 今日新增
|
||||
todayUsers?: string;
|
||||
// 总订单笔数
|
||||
totalOrders?: string;
|
||||
// 今日订单笔数
|
||||
todayOrders?: string;
|
||||
// 备注
|
||||
comments?: string;
|
||||
// 状态, 0正常, 1冻结
|
||||
status?: number;
|
||||
// 租户id
|
||||
tenantId?: number;
|
||||
// 注册时间
|
||||
createTime?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* 商城销售统计表搜索条件
|
||||
*/
|
||||
export interface CountParam extends PageParam {
|
||||
id?: number;
|
||||
dateTime?: string;
|
||||
keywords?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user