优化网站导航模块
This commit is contained in:
31
modules/api/booking_____/bookingItem/model/index.ts
Normal file
31
modules/api/booking_____/bookingItem/model/index.ts
Normal file
@@ -0,0 +1,31 @@
|
||||
import type { PageParam } from '@/api';
|
||||
|
||||
/**
|
||||
* 项目类型
|
||||
*/
|
||||
export interface BookingItem {
|
||||
// ID
|
||||
id?: number;
|
||||
// 项目类型
|
||||
name?: string;
|
||||
// 项目图标
|
||||
image?: string;
|
||||
// 项目备注
|
||||
comments?: string;
|
||||
// 状态
|
||||
status?: number;
|
||||
// 排序号
|
||||
sortNumber?: number;
|
||||
// 租户id
|
||||
tenantId?: number;
|
||||
// 创建时间
|
||||
createTime?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* 项目类型搜索条件
|
||||
*/
|
||||
export interface BookingItemParam extends PageParam {
|
||||
id?: number;
|
||||
keywords?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user