EmployeeConfigInfoController.java 432 Bytes
package com.bsth.controller.schedule;

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

/**
 * Created by xu on 16/5/10.
 */
@RestController
@RequestMapping("eci")
public class EmployeeConfigInfoController extends BaseController<EmployeeConfigInfo, Long> {
}