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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
| import request from '/@/utils/request';
| /**
| * @summary 获取所有监测稀释操作
| */
| export const GetAllMonitorTransferOpsLevel = async (req: any = request) => {
| return req({
| url: '/Monitor/Transfer/Ops/GetAll@V1.0',
| method: 'get',
| });
| };
|
| /**
| * @summary 添加一个监测稀释操作
| */
| export const InsertAMonitorTransferOpsLevel = async (data, req: any = request) => {
| return req({
| url: '/Monitor/Transfer/Ops/Insert@V1.0',
| method: 'post',
| data,
| });
| };
|
| /**
| * @summary 修改一个监测稀释操作
| */
| export const UpdateAMonitorTransferOpsLevel = async (data, req: any = request) => {
| return req({
| url: '/Monitor/Transfer/Ops/Update@V1.0',
| method: 'put',
| data,
| });
| };
|
| /**
| * @summary 修改监测稀释操作排序码
| */
| export const UpdateMonitorTransferOpsLevelSorter = async (data, req: any = request) => {
| return req({
| url: '/Monitor/Transfer/Ops/UpdateSorter@V1.0',
| method: 'put',
| data,
| });
| };
|
| /**
| * @summary 删除一个监测稀释操作
| */
| export const DeleteAMonitorTransferOpsLevel = async (params, req: any = request) => {
| return req({
| url: '/Monitor/Transfer/Ops/DeleteByID@V1.0',
| method: 'delete',
| params,
| });
| };
|
| /**
| *
| * @summary 设置 ★更新方法的状态
| */
| export async function UpdateUseStatus(params, req: any = request) {
| return req({
| url: '/Monitor/Transfer/Ops/UpdateUseStatus@V1.0',
| method: 'PUT',
| data: params,
| });
| }
|
|