package com.mes.engineering.controller;
|
|
|
import com.mes.engineering.entity.Engineering;
|
import com.mes.engineering.service.EngineeringService;
|
|
import com.mes.utils.Result;
|
import io.swagger.annotations.ApiOperation;
|
import lombok.extern.slf4j.Slf4j;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.web.bind.annotation.*;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 前端控制器
|
* </p>
|
*
|
* @author wu
|
* @since 2024-04-22
|
*/
|
@RestController
|
@Slf4j
|
@RequestMapping("/engineering/engineering")
|
public class EngineeringController {
|
|
}
|