DlbController.java
356 Bytes
package com.bsth.controller.oil;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.bsth.controller.BaseController;
import com.bsth.entity.oil.Dlb;
@RestController
@RequestMapping("dlb")
public class DlbController extends BaseController<Dlb, Integer>{
}