StationKlController.java
404 Bytes
package com.bsth.controller.kl;
import com.bsth.controller.BaseController;
import com.bsth.entity.kl.StationKl;
import com.bsth.entity.sys.SysUser;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("station_kl")
public class StationKlController extends BaseController<StationKl, Integer> {
}