yxh
2023-08-24 b734890015ea3b6870969e7bc6637a2481ed4bd9
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
67
68
69
70
71
 
    /*检验字典API接口
          testid// 自增ID     testname// 检验名称     testcode// 检验代码     centerid// 中心ID     centername// 中心名称     centercode// 中心代码     orgid//医院机构id    del_flag// 删除标记     update_by// 更新人     update_time// 更新时间     create_by// 创建人     create_time// 创建时间     isupload// 上传标记     upload_time// 上传时间     isenable// 是否启用     pid//父ID    guid//GUID
    */
    import request from '@/utils/request'
 
    export function slavelistbase_dict_test(query) {
      return request({
        url: 'proc/smartor/entity/base/base_dict_test/slavelist',
        method: 'get',
        params: query
      })
    }
 
    /*
        功能: 读取列表信息
        参数:query 指定查询参数 
    */
    export function listbase_dict_test(query) {
      return request({
        url: 'proc/smartor/entity/base/base_dict_test/list',
        method: 'get',
        params: query
      })
    }
 
    /*
        功能: 根据id读取指定对象信息
        参数:query 指定查询参数
    */
    export function getbase_dict_test(testid) {
      return request({
        url: 'proc/smartor/entity/base/base_dict_test/' + testid,
        method: 'get'
      })
    }
 
    /*
        功能: 增加对象
        参数:data 对象数据
    */
    export function addbase_dict_test(data) {
      return request({
        url: 'proc/smartor/entity/base/base_dict_test/add',
        method: 'post',
        data: data
      })
    }
 
    /*
        功能: 更新对象
        参数:data 对象数据
    */
    export function updatebase_dict_test(data) {
      return request({
        url: 'proc/smartor/entity/base/base_dict_test/update',
        method: 'put',
        data: data
      })
    }
 
    /*
        功能: 删除对象
        参数:objid 对象ID
    */
    export function delbase_dict_test(testid) {
      return request({
        url: 'proc/smartor/entity/base/base_dict_test/del/' +testid,
        method: 'delete'
      })
    }