package com.cku.schools.mrschool.web;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;

import com.cku.oa.groomer.entity.GroomerShowBreeds;
import com.cku.oa.groomer.service.GroomerShowBreedsService;
import com.thinkgem.jeesite.common.web.BaseController;

/**
 * 美容活动犬种Controller
 * 
 * @author Sunny
 * @version 2021-12-17
 */
@Controller
@RequestMapping("/schools/groomer/groomerShowBreeds")
public class SchoolGroomerShowBreedsController extends BaseController {

	@Autowired
	private GroomerShowBreedsService groomerShowBreedsService;

	@RequestMapping(value = "showBreeds")
	public String getGroomerShowBreeds(GroomerShowBreeds groomerShowBreeds, HttpServletRequest request,
			HttpServletResponse response, Model model) {
		return groomerShowBreedsService.getGroomerShowBreeds(groomerShowBreeds,model);
	}

}