|
|
@ -3,6 +3,7 @@ package com.hxhq.business.controller; |
|
|
import java.util.Arrays; |
|
|
import java.util.Arrays; |
|
|
import java.util.List; |
|
|
import java.util.List; |
|
|
|
|
|
|
|
|
|
|
|
import com.alibaba.fastjson2.JSONObject; |
|
|
import com.hxhq.common.core.web.controller.BaseController; |
|
|
import com.hxhq.common.core.web.controller.BaseController; |
|
|
import com.hxhq.common.core.web.domain.AjaxResult; |
|
|
import com.hxhq.common.core.web.domain.AjaxResult; |
|
|
import com.hxhq.common.core.web.page.TableDataInfo; |
|
|
import com.hxhq.common.core.web.page.TableDataInfo; |
|
|
@ -62,4 +63,15 @@ public class TestController extends BaseController |
|
|
{ |
|
|
{ |
|
|
return toAjax(testService.removeByIds(Arrays.asList(ids))); |
|
|
return toAjax(testService.removeByIds(Arrays.asList(ids))); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* 查询落笔留痕 |
|
|
|
|
|
*/ |
|
|
|
|
|
@GetMapping("/testLblh") |
|
|
|
|
|
public AjaxResult testLblh(@RequestBody JSONObject json) |
|
|
|
|
|
{ |
|
|
|
|
|
logger.info("落笔留痕请求:"+JSONObject.toJSONString(json)); |
|
|
|
|
|
return AjaxResult.success(); |
|
|
|
|
|
} |
|
|
} |
|
|
} |