raising_harvest_monthly_profit_report.js
1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import request from '@/utils/request'
// 查询养成收获月报-利润列表
export function listRaising_harvest_monthly_profit_report(query) {
return request({
url: '/admin/sh/raising_harvest_monthly_profit_report/list',
method: 'get',
params: query
})
}
// 查询养成收获月报-利润详细
export function getRaising_harvest_monthly_profit_report(id) {
return request({
url: '/admin/sh/raising_harvest_monthly_profit_report/' + id,
method: 'get'
})
}
// 新增养成收获月报-利润
export function addRaising_harvest_monthly_profit_report(data) {
return request({
url: '/admin/sh/raising_harvest_monthly_profit_report',
method: 'post',
data: data
})
}
// 修改养成收获月报-利润
export function updateRaising_harvest_monthly_profit_report(data) {
return request({
url: '/admin/sh/raising_harvest_monthly_profit_report',
method: 'put',
data: data
})
}
// 删除养成收获月报-利润
export function delRaising_harvest_monthly_profit_report(id) {
return request({
url: '/admin/sh/raising_harvest_monthly_profit_report/' + id,
method: 'delete'
})
}