CusFollowStaffController.java 758 B

123456789101112131415161718192021222324
  1. package com.dk.mdm.controller.mst;
  2. import com.dk.mdm.model.pojo.mst.CusFollowStaff;
  3. import com.dk.common.controller.BaseController;
  4. import com.dk.common.service.BaseService;
  5. import org.springframework.web.bind.annotation.RequestMapping;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.web.bind.annotation.RestController;
  8. import io.swagger.annotations.Api;
  9. import com.dk.mdm.service.mst.CusFollowStaffService;
  10. @Api(tags = "客户跟进人API接口")
  11. @RestController
  12. @RequestMapping("/cusFollowStaff")
  13. public class CusFollowStaffController{
  14. public BaseService<CusFollowStaff> getService() {
  15. return cusFollowStaffService;
  16. }
  17. @Autowired
  18. private CusFollowStaffService cusFollowStaffService;
  19. }