DeviceRevertLineController.java 422 Bytes
package com.bsth.controller.realcontrol;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import com.bsth.controller.BaseController;
import com.bsth.entity.realcontrol.DeviceRevertLine;

@RestController
@RequestMapping("/deviceRevert")
public class DeviceRevertLineController extends BaseController<DeviceRevertLine, Integer>{

}