You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
734 B
40 lines
734 B
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;
|
|
}
|