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.
udi-wms-java/src/main/java/com/glxp/api/controller/collect/IoCollectCodeController.java

18 lines
428 B
Java

11 months ago
package com.glxp.api.controller.collect;
import com.glxp.api.controller.BaseController;
import com.glxp.api.service.collect.IoCollectCodeService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
@Slf4j
@RestController
public class IoCollectCodeController extends BaseController {
@Resource
IoCollectCodeService collectCodeService;
}