Files
admin-vben5/apps/web-antd/src/api/property/customerService/faqManagement/model.d.ts

115 lines
1.2 KiB
TypeScript
Raw Normal View History

2025-08-18 17:15:44 +08:00
import type { PageQuery, BaseEntity } from '#/api/common';
export interface FaqManagementVO {
/**
* id
*/
id: string | number;
/**
*
*/
head: string;
/**
*
*/
type: string;
/**
*
*/
pageView: number;
/**
*
*/
contents: string;
/**
* (1稿 2)
*/
status: string;
/**
*
*/
searchValue: string;
}
export interface FaqManagementForm extends BaseEntity {
/**
* id
*/
id?: string | number;
/**
*
*/
head?: string;
/**
*
*/
type?: string;
/**
*
*/
pageView?: number;
/**
*
*/
contents?: string;
/**
* (1稿 2)
*/
status?: string;
/**
*
*/
searchValue?: string;
}
export interface FaqManagementQuery extends PageQuery {
/**
*
*/
head?: string;
/**
*
*/
type?: string;
/**
*
*/
pageView?: number;
/**
*
*/
contents?: string;
/**
* (1稿 2)
*/
status?: string;
/**
*
*/
searchValue?: string;
/**
*
*/
params?: any;
}