package com.dk.mdm.controller.mac; import com.dk.mdm.model.pojo.mac.RecPayHandleItem; 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.RecPayHandleItemService; @Api(tags = "账务冲抵明细API接口") @RestController @RequestMapping("/recPayHandleItem") public class RecPayHandleItemController{ public BaseService getService() { return recPayHandleItemService; } @Autowired private RecPayHandleItemService recPayHandleItemService; }