/**
|
*
|
*/
|
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);
|
}
|
}
|