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