import axios from "./request";
|
|
// 获取项目投资及资金来源情况表分页
|
export const getProjectInvestmentFundings = (params) => {
|
return axios({
|
url: "/api/project-investment-funding/page",
|
method: "GET",
|
params: params
|
})
|
}
|
|
// 获取项目投资及资金来源情况表列表
|
export const getProjectInvestmentFundingList = () => {
|
return axios({
|
url: "/api/project-investment-funding/list",
|
method: "GET"
|
})
|
}
|
|
// 通过id获取项目投资及资金来源情况表
|
export const getProjectInvestmentFundingById = (params) => {
|
return axios({
|
url: "/api/project-investment-funding/" + params,
|
method: "GET"
|
})
|
}
|
|
// 通过id删除项目投资及资金来源情况表
|
export const deleteProjectInvestmentFundingById = (params) => {
|
return axios({
|
url: "/api/project-investment-funding/" + params,
|
method: "DELETE"
|
})
|
}
|
|
// 批量删除项目投资及资金来源情况表
|
export const deleteProjectInvestmentFundingByIds = (params) => {
|
return axios({
|
url: "/api/project-investment-funding/batch",
|
method: "DELETE",
|
data: params
|
})
|
}
|
|
// 修改项目投资及资金来源情况表
|
export const editProjectInvestmentFunding = (params) => {
|
return axios({
|
url: "/api/project-investment-funding/",
|
method: "PUT",
|
data: params
|
})
|
}
|
|
// 添加项目投资及资金来源情况表
|
export const addProjectInvestmentFunding = (params) => {
|
return axios({
|
url: "/api/project-investment-funding/",
|
method: "POST",
|
data: params
|
})
|
}
|