初始化

This commit is contained in:
2025-01-27 23:24:42 +08:00
parent c8a96306c4
commit 6ae8339299
421 changed files with 35687 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
import type { PageParam } from '@/api';
import { Company } from '@/api/system/company/model';
/**
* 订单
*/
export interface Order {
orderId?: number;
orderNo?: string;
type?: number;
logo?: string;
money?: number;
payPrice?: number;
planId?: number;
priceId?: number;
gradeId?: number;
userId?: number;
companyId?: number;
nickname?: string;
username?: string;
userAvatar?: string;
shopId?: string;
sortNumber?: number;
comments?: string;
status?: number;
createTime?: string;
updateTime?: string;
company?: Company;
}
/**
* 订单搜索条件
*/
export interface OrderParam extends PageParam {
orderId?: number;
orderNo?: string;
type?: number;
status?: string;
sortNumber?: string;
userId?: number;
createTime?: string;
username?: string;
nickname?: string;
}