import type { PageParam } from '@/api'; /** * 页面 */ export interface Design { pageId?: number; name?: string; keywords?: string; description?: string; path?: string; component?: string; photo?: string; content?: string; // 类型 type?: string; // 宽 width?: string; // 高 height?: string; // 页面样式 style?: string; // 附件 images?: string; // 用户ID userId?: number; // 设为首页 home?: number; // 排序 sortNumber?: number; // 备注 comments?: string; // 状态 status?: number; // 创建时间 createTime?: string; // 更新时间 updateTime?: string; // 页面布局 layout?: string; backgroundColor?: string; demoUrl?: string; buyUrl?: string; docUrl?: string; } /** * 页面搜索条件 */ export interface DesignParam extends PageParam { pageId?: string; name?: number; type?: number; userId?: number; }