stationnotifyModel.ts 1.02 KB
import { BasicPageParams } from '/@/api/model/baseModel';

export type NoticeQueryParam = BasicPageParams & NoticeParams;
export type NoticeUserParam = BasicPageParams & NoticeUserParams;
export type NoticeParams = {
  orderFiled?: string;
  id?: string;
};

export type NoticeUserParams = {
  noticeId?: string;
};
export type NoticeByIdParams = {
  id: string;
};

//保存草稿
export interface NotifyAddDraftModel {
  content: string;
  createTime: '2021-12-07T03:19:45.394Z';
  creator: string;
  id: string;
  pointId: [];
  receiverType: string;
  receiverTypeIds: string;
  senderDate: string;
  senderName: string;
  status: string;
  title: string;
  type: 'MEETING';
  updateTime: string;
  updater: string;
}
export interface NotifyAddreLeaseModel {
  content: string;
  createTime: string;
  creator: string;
  id: string;
  pointId: [];
  receiverType: string;
  receiverTypeIds: string;
  senderDate: string;
  senderName: string;
  status: string;
  title: string;
  type: 'MEETING';
  updateTime: string;
  updater: string;
}