RegionController.java 403 Bytes
package com.bsth.controller.berth;

import com.bsth.controller.BaseController;
import com.bsth.entity.berth.Region;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * Created by panzhao on 2017/8/22.
 */
@RestController
@RequestMapping("/region")
public class RegionController extends BaseController<Region, Integer>{
}