Newer
Older
xc-business-system / src / views / resource / customer / reviewNotice / customer-notice.ts
tanyue on 29 Aug 2023 644 bytes 20230829 检测结果复查通知调试
export interface IListQuery {
  noticeNo: string
  createUserName: string
  createTimeStart: string
  createTimeEnd: string
  offset: number
  limit: number
  sort?: string
  order?: string
}

export interface ICustomerNoticeInfo {
  id?: string
  customerId: string
  customerName?: string
  deptId: string
  labCode: string
  labCodeName?: string
  noticeUserId: string
  noticeUserName?: string
  noticeNo: string
  noticeName?: string
  submitDate?: string
  deviceName?: string
  deviceModel?: string
  deviceNo?: string
  returnDate?: string
  noticeDate?: string
  createUserId?: string
  createUserName?: string
  createTime?: string
}