HoursController.java
472 Bytes
package com.bsth.controller.realcontrol.summary;
import com.bsth.controller.BaseController;
import com.bsth.data.summary.entity.Hours_jsy;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* 汇总数据 -工时
* Created by panzhao on 2017/7/27.
*/
@RestController
@RequestMapping("/summary/hours")
public class HoursController extends BaseController<Hours_jsy, Long>{
}