TTInfoController.java 396 Bytes
package com.bsth.controller.schedule;

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

/**
 * Created by xu on 16/5/12.
 */
@RestController
@RequestMapping("tic")
public class TTInfoController extends BaseController<TTInfo, Long> {
}