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.
18 lines
331 B
Java
18 lines
331 B
Java
package com.glxp.api.controller.inout;
|
|
|
|
import com.glxp.api.service.inout.IoOrderService;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
|
|
@Slf4j
|
|
@RestController
|
|
public class IoOrderController {
|
|
|
|
@Resource
|
|
IoOrderService orderService;
|
|
|
|
}
|