| 123456789101112131415161718192021222324 |
- package com.dk.mdm.controller.mst;
- import com.dk.mdm.model.pojo.mst.CusFollowStaff;
- 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.CusFollowStaffService;
- @Api(tags = "客户跟进人API接口")
- @RestController
- @RequestMapping("/cusFollowStaff")
- public class CusFollowStaffController{
- public BaseService<CusFollowStaff> getService() {
- return cusFollowStaffService;
- }
- @Autowired
- private CusFollowStaffService cusFollowStaffService;
- }
|