cereBusinessInfo.js 1.12 KB
import request from '@/utils/request'
// 租赁审核
// 查询
export function GetAll(data) {
  return request({
    url: '/cereBusinessInfo/queryByPage',
    method: 'post',
    data
  })
}
// 单条查询
export function queryGetAll(data) {
  return request({
    url: '/cereBusinessInfo/queryById',
    method: 'post',
    data
  })
}
// 新增
export function msgadd(data) {
  return request({
    url: '/cereBusinessInfo/add',
    method: 'post',
    data
  })
}

// 编辑
export function msgedit(data) {
  return request({
    url: '/cereBusinessInfo/edit',
    method: 'post',
    data
  })
}

// 删除
export function close(data) {
  return request({
    url: '/cereBusinessInfo/deleteById',
    method: 'post',
    data
  })
}

// 招商统计分析
export function getInvestmentStatistics(data) {
  return request({
    url: '/attractInvestmentStatisticsController/getInvestmentStatistics',
    method: 'post',
    data
  })
}

// 招商方案统计
export function getInvestmentPlanStatistics(data) {
  return request({
    url: '/attractInvestmentStatisticsController/getInvestmentPlanStatistics',
    method: 'post',
    data
  })
}