incubation_statistics_by_area.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 listIncubation_statistics_by_area(query) {
return request({
url: '/admin/zb/incubation_statistics_by_area/list',
method: 'get',
params: query
})
}
// 查询育苗孵化指标统计-按区域详细
export function getIncubation_statistics_by_area(id) {
return request({
url: '/admin/zb/incubation_statistics_by_area/' + id,
method: 'get'
})
}
// 新增育苗孵化指标统计-按区域
export function addIncubation_statistics_by_area(data) {
return request({
url: '/admin/zb/incubation_statistics_by_area',
method: 'post',
data: data
})
}
// 修改育苗孵化指标统计-按区域
export function updateIncubation_statistics_by_area(data) {
return request({
url: '/admin/zb/incubation_statistics_by_area',
method: 'put',
data: data
})
}
// 删除育苗孵化指标统计-按区域
export function delIncubation_statistics_by_area(id) {
return request({
url: '/admin/zb/incubation_statistics_by_area/' + id,
method: 'delete'
})
}