BaseCountryServeController.java 447 B

1234567891011121314151617
  1. package edu.travel.commodity.web;
  2. import edu.travel.commodity.entity.BaseCountryServe;
  3. import edu.travel.commodity.service.impl.BaseCountryServeServiceImpl;
  4. import org.springframework.web.bind.annotation.*;
  5. import org.springframework.beans.factory.annotation.Autowired;
  6. /**
  7. * 服务国家表(base_country_serve)表控制层
  8. *
  9. * @author xxxxx
  10. */
  11. @RestController
  12. @RequestMapping("/base_country_serve")
  13. public class BaseCountryServeController {
  14. }