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/basic/BasicManufacturerController...

21 lines
467 B
Java

package com.glxp.api.controller.basic;
import com.glxp.api.controller.BaseController;
import com.glxp.api.service.basic.BasicManufacturerService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
/**
*
*/
@Slf4j
@RestController
public class BasicManufacturerController extends BaseController {
@Resource
BasicManufacturerService manufacturerService;
}