SchedulePlanController.java 428 Bytes
package com.bsth.controller.schedule;

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

/**
 * Created by xu on 16/6/16.
 */
@RestController
@RequestMapping("spc")
public class SchedulePlanController extends BaseController<SchedulePlan, Long> {
}