23 lines
468 B
Java
23 lines
468 B
Java
package customization.test;
|
|
|
|
import aiyh.utils.ApiResult;
|
|
import com.api.aiyh_guijiu.service.WorkflowQueueService;
|
|
import org.junit.Test;
|
|
|
|
/**
|
|
* @author EBU7-dev1-ayh
|
|
* @create 2021/9/16 0016 14:22
|
|
* 会议接口测试
|
|
*/
|
|
|
|
|
|
public class PsApiTest extends BaseTest {
|
|
|
|
@Test
|
|
public void test() {
|
|
WorkflowQueueService workflowQueueService = new WorkflowQueueService();
|
|
String picIsPs = workflowQueueService.getPicIsPs("73");
|
|
System.out.println(picIsPs);
|
|
}
|
|
}
|