You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
812 B
Java
29 lines
812 B
Java
package com.glxp.api.controller.inout;
|
|
|
|
import com.glxp.api.controller.BaseController;
|
|
import com.glxp.api.req.inout.FilterStatDataRequest;
|
|
import com.glxp.api.service.inout.IoStatDataService;
|
|
import lombok.RequiredArgsConstructor;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
/**
|
|
* 出入库汇总Test 测试 远程连接
|
|
*/
|
|
@Slf4j
|
|
@RestController
|
|
@RequiredArgsConstructor
|
|
public class IoStatDataController extends BaseController {
|
|
|
|
@Resource
|
|
IoStatDataService ioStatDataService;
|
|
|
|
@GetMapping("/udiwms/inout/stat/filter")
|
|
public void filterList(FilterStatDataRequest statDataRequest) {
|
|
ioStatDataService.getData(statDataRequest);
|
|
}
|
|
}
|