admin-vben5/apps/web-antd/src/api/property/serviceClassification/model.d.ts
2025-06-18 11:03:42 +08:00

85 lines
1011 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;
}