Newer
Older
smart-metering-front / src / views / workbench / workbench-interface.ts
dutingting on 28 Jun 2023 954 bytes 消息滚动组件接口联调
// 审批提醒查询
export interface IApprovalMessageListQuery {
  endTime: string // 通知结束时间
  messageSourceModule: string // 来源模块(字典code)
  startTime: string // 通知开始时间
  status: number | string // 已读1未读0
  offset: number
  limit: number
}

// 审批提醒列表数据
export interface IApprovalMessageList {
  messageTitle: string // 审批名称
}

// 工作提醒查询
export interface IWorkMessageListQuery {
  endTime: string // 消息提醒结束时间
  messageSourceModule: string // 来源模块(字典code)
  messageType: string// 消息提醒的业务类型(字典code)
  remindDeptId: string// 消息提醒的用户部门id
  remindId: string// 消息提醒的用户id
  startTime: string // 消息提醒开始时间
  status: number | string// 已读1未读0
  offset: number
  limit: number
}

// 消息滚动组件
export interface IMessageScroll {
  id: string
  title: string
}