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

140 lines
1.5 KiB
TypeScript
Raw Normal View History

2025-07-23 16:28:30 +08:00
import type { PageQuery, BaseEntity } from '#/api/common';
export interface NoticesVO {
/**
*
*/
id: string | number;
/**
*
*/
title: string;
/**
*
*/
type: string;
/**
*
*/
remark: string;
/**
*
*/
isAll: string;
/**
*
*/
startTime: string;
/**
*
*/
endTime: string;
/**
*
*/
afficheContent: string;
/**
*
*/
issuers: number;
}
export interface NoticesForm extends BaseEntity {
/**
*
*/
id?: string | number;
/**
*
*/
title?: string;
/**
*
*/
type?: string;
/**
*
*/
remark?: string;
/**
*
*/
isAll?: string;
/**
*
*/
startTime?: string;
/**
*
*/
endTime?: string;
/**
*
*/
afficheContent?: string;
/**
*
*/
issuers?: number;
}
export interface NoticesQuery extends PageQuery {
/**
*
*/
title?: string;
/**
*
*/
type?: string;
/**
*
*/
isAll?: string;
/**
*
*/
startTime?: string;
/**
*
*/
endTime?: string;
/**
*
*/
afficheContent?: string;
/**
*
*/
issuers?: number;
/**
*
*/
params?: any;
}