PerWorkstation.js 587 Bytes

import request from '@/utils/request'
// 消息通知
export function ManaGetAll(data) {
  return request({
    url: '/cereMessageNotification/queryByPage',
    method: 'post',
    data
  })
}
export function ManaAdd(data) {
  return request({
    url: '/cereMessageNotification/add',
    method: 'post',
    data
  })
}
export function ManaEdit(data) {
  return request({
    url: '/cereMessageNotification/edit',
    method: 'post',
    data
  })
}
export function ManaDel(data) {
  return request({
    url: '/cereMessageNotification/deleteById',
    method: 'post',
    data
  })
}