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.
26 lines
544 B
Java
26 lines
544 B
Java
11 months ago
|
package com.glxp.api.controller.inout;
|
||
|
|
||
|
import com.glxp.api.controller.BaseController;
|
||
|
import com.glxp.api.service.inout.IoSplitCodeDetailService;
|
||
|
import com.glxp.api.service.inout.IoSplitCodeService;
|
||
|
import lombok.extern.slf4j.Slf4j;
|
||
|
import org.springframework.web.bind.annotation.RestController;
|
||
|
|
||
|
import javax.annotation.Resource;
|
||
|
|
||
|
@Slf4j
|
||
|
@RestController
|
||
|
public class IoSplitController extends BaseController {
|
||
|
|
||
|
|
||
|
@Resource
|
||
|
IoSplitCodeService splitCodeService;
|
||
|
@Resource
|
||
|
IoSplitCodeDetailService splitCodeDetailService;
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
}
|