Newer
Older
xc-metering-front / src / views / system / notice / notice-interface.ts
liyaguang on 26 Jul 2023 499 bytes fix(*): 系统管理菜单权限
// 通知公告信息类型
export interface noticeType {
  id: number //	主键id(列表接口参数)
  minioFileName: string //	上传文件返回名称	string
  noticeCompany: string //	发布单位	string
  noticeContent: string //	发布内容	string
  noticeNo: string // 	通知公告编号	string
  noticePublisher: string //	发布人	string
  noticeSketch: string //	内容简述	string
  noticeTime?: string //	发布时间	string
  noticeTitle: string //	通知公告标题	string
}