package com.dk.mdm.controller.mst; import com.dk.mdm.model.pojo.mst.OrgMac; 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.mst.OrgMacService; @Api(tags = "组织资金账户API接口") @RestController @RequestMapping("/orgMac") public class OrgMacController{ public BaseService getService() { return orgMacService; } @Autowired private OrgMacService orgMacService; }