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.
31 lines
487 B
31 lines
487 B
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 书籍内容
|
|
*/
|
|
export interface DocsBook {
|
|
// 自增ID
|
|
bookId?: number;
|
|
// 名称
|
|
name?: string;
|
|
// 书籍标识
|
|
code?: string;
|
|
// 封面图
|
|
photo?: string;
|
|
// 排序
|
|
sortNumber?: number;
|
|
// 备注
|
|
comments?: string;
|
|
// 状态
|
|
status?: number;
|
|
// 创建时间
|
|
createTime?: string;
|
|
}
|
|
|
|
/**
|
|
* 书籍搜索条件
|
|
*/
|
|
export interface DocsBookParam extends PageParam {
|
|
bookId?: number;
|
|
docsId?: number;
|
|
}
|