package com.dk.mdm.controller.ivt; import com.dk.mdm.model.pojo.ivt.InboundItem; import com.dk.common.controller.BaseController; import com.dk.common.service.BaseService; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.RestController; import io.swagger.annotations.Api; import com.dk.mdm.service.ivt.InboundItemService; @Api(tags = "入库明细API接口") @RestController @RequestMapping("/ivt/inboundItem") public class InboundItemController{ public BaseService getService() { return inboundItemService; } @Autowired private InboundItemService inboundItemService; }