// 审批提醒查询 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// 已读1未读0 offset: number limit: number }