GuideboardInfoController.java 420 Bytes
package com.bsth.controller.schedule;

import com.bsth.controller.BaseController;
import com.bsth.entity.schedule.GuideboardInfo;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * Created by xu on 16/5/11.
 */
@RestController
@RequestMapping("gic")
public class GuideboardInfoController extends BaseController<GuideboardInfo, Long> {
}