SampleController.java
376 Bytes
package com.bsth.controller.forecast;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.bsth.controller.BaseController;
import com.bsth.entity.forecast.Sample;
@RestController
@RequestMapping("sample")
public class SampleController extends BaseController<Sample, Long>{
}