package com.dk.mdm.controller.mac; import com.dk.mdm.model.pojo.mac.OtherReceivableItem; 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.mac.OtherReceivableItemService; @Api(tags = "其他收入明细API接口") @RestController @RequestMapping("/mac/otherReceivableItem") public class OtherReceivableItemController{ public BaseService getService() { return otherReceivableItemService; } @Autowired private OtherReceivableItemService otherReceivableItemService; }