1、通知公告
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
2025-07-23 16:28:30 +08:00
parent db8186d055
commit ae098aa1e0
13 changed files with 842 additions and 129 deletions

View File

@@ -0,0 +1,139 @@
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;
}