85 lines
1011 B
TypeScript
85 lines
1011 B
TypeScript
import type { PageQuery, BaseEntity } from '#/api/common';
|
||
|
||
export interface ServiceClassificationVO {
|
||
/**
|
||
* id
|
||
*/
|
||
id: string | number;
|
||
|
||
/**
|
||
* 分类
|
||
*/
|
||
type: string;
|
||
|
||
/**
|
||
* 分类名称
|
||
*/
|
||
name: string;
|
||
|
||
/**
|
||
* 排序
|
||
*/
|
||
sort: number;
|
||
|
||
/**
|
||
* 分类状态(0:禁用,1:启用)
|
||
*/
|
||
status: number;
|
||
|
||
}
|
||
|
||
export interface ServiceClassificationForm extends BaseEntity {
|
||
/**
|
||
* id
|
||
*/
|
||
id?: string | number;
|
||
|
||
/**
|
||
* 分类
|
||
*/
|
||
type?: string;
|
||
|
||
/**
|
||
* 分类名称
|
||
*/
|
||
name?: string;
|
||
|
||
/**
|
||
* 排序
|
||
*/
|
||
sort?: number;
|
||
|
||
/**
|
||
* 分类状态(0:禁用,1:启用)
|
||
*/
|
||
status?: number;
|
||
|
||
}
|
||
|
||
export interface ServiceClassificationQuery extends PageQuery {
|
||
/**
|
||
* 分类
|
||
*/
|
||
type?: string;
|
||
|
||
/**
|
||
* 分类名称
|
||
*/
|
||
name?: string;
|
||
|
||
/**
|
||
* 排序
|
||
*/
|
||
sort?: number;
|
||
|
||
/**
|
||
* 分类状态(0:禁用,1:启用)
|
||
*/
|
||
status?: number;
|
||
|
||
/**
|
||
* 日期范围参数
|
||
*/
|
||
params?: any;
|
||
}
|