FastAndSlowController.java
473 Bytes
package com.bsth.controller.realcontrol.summary;
import com.bsth.controller.BaseController;
import com.bsth.data.summary.entity.FastAndSlow;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* 快慢误点统计
* Created by panzhao on 2017/10/24.
*/
@RestController
@RequestMapping("/summary/fastAndSlow")
public class FastAndSlowController extends BaseController<FastAndSlow, Long> {
}