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.
37 lines
615 B
37 lines
615 B
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 文档内容
|
|
*/
|
|
export interface DocsContent {
|
|
// 自增ID
|
|
docsContentId?: number;
|
|
// 文档内容id
|
|
docsId?: number;
|
|
// 文档内容
|
|
content?: string;
|
|
// 排序
|
|
sortNumber?: number;
|
|
// 备注
|
|
comments?: string;
|
|
// 状态
|
|
status?: number;
|
|
// 创建时间
|
|
createTime?: string;
|
|
// 更新时间
|
|
updateTime?: string;
|
|
//
|
|
key?: number;
|
|
//
|
|
value?: number;
|
|
}
|
|
|
|
/**
|
|
* 文档内容搜索条件
|
|
*/
|
|
export interface DocsContentParam extends PageParam {
|
|
docsId?: number;
|
|
content?: string;
|
|
// 商户编号
|
|
merchantCode?: string;
|
|
}
|