shichongfu
2023-04-25 ce0b49552668d3331055e2b1a1447a743dc54939
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
    /**
 * 
 */
package com.product.admin.test;
 
import java.util.HashMap;
import java.util.Map;
 
import com.product.common.utils.HttpTest;
 
/**
 * Copyright  LX-BASE
 * @Title: PromptTest
 * @Project: LX-BASE-SERVER
 * @Date: 2020年5月29日 上午11:17:01 
 * @Author: 郑盟
 * @Description: 高级参照业务
 */
public class PromptTest extends HttpTest{
    public static void main(String[] args) {
        PromptTest.findPrompt();
//        PromptTest.findPromptMobile();
    }
    
    
    public static void findPrompt() {
        Map m = new HashMap();
        m.put("~table~", "product_sys_prompt");
        m.put("url/api", "/api/prompt/business/findPrompt/v1");
        m.put("prompt_name", "data_source_field");
        m.put("uuid","0aae05ea-632c-42d3-9670-e8fc17a2b367");
        m.put("cpage", 1);
        m.put("pagesize", 10);
        testPost(m);
    }
    public static void findPromptMobile() {
        Map m = new HashMap();
        m.put("~table~", "product_sys_prompt");
        m.put("url/api", "/api/prompt/business/findPrompt-mobile/v1");
        m.put("prompt_name", "StaffDimission-update");   
        m.put("org_level_uuid", "9392fcc7-6edc-4381-855a-4615780ecd07");
//        m.put("cpage", 1);
//        m.put("pagesize", 10);
        testPost(m);
    }
}