package com.ruoyi.web.controller.oa;
|
|
import lombok.RequiredArgsConstructor;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.web.bind.annotation.*;
|
import org.springframework.validation.annotation.Validated;
|
import com.ruoyi.common.core.controller.BaseController;
|
import io.swagger.annotations.Api;
|
|
/**
|
* 设备序列号维护Controller
|
*
|
* @author ruoyi
|
* @date 2021-12-08
|
*/
|
@Validated
|
@Api(value = "设备序列号维护控制器", tags = {"设备序列号维护管理"})
|
@RequiredArgsConstructor(onConstructor_ = @Autowired)
|
@RestController
|
@RequestMapping("/oa/equipmentCode")
|
public class DevEquipmentCodeController extends BaseController {
|
|
}
|