| 123456789101112131415161718192021222324 |
- package com.dk.mdm.controller.mac;
- import com.dk.mdm.model.pojo.mac.OtherPayable;
- 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.OtherPayableService;
- @Api(tags = "其他支出单API接口")
- @RestController
- @RequestMapping("/otherPayable")
- public class OtherPayableController{
- public BaseService<OtherPayable> getService() {
- return otherPayableService;
- }
- @Autowired
- private OtherPayableService otherPayableService;
- }
|