| | |
| | | import com.ruoyi.production.service.ProductionTeamService;
|
| | | import io.swagger.v3.oas.annotations.Operation;
|
| | | import io.swagger.v3.oas.annotations.tags.Tag;
|
| | | import lombok.AllArgsConstructor;
|
| | | import org.springframework.validation.annotation.Validated;
|
| | | import org.springframework.web.bind.annotation.*;
|
| | |
|
| | |
| | | * 生产班组控制器
|
| | | */
|
| | | @RestController
|
| | | @RequestMapping("/production_team")
|
| | | @RequestMapping("/productionTeam")
|
| | | @Tag(name = "生产班组管理", description = "生产班组增删改查接口")
|
| | | @AllArgsConstructor
|
| | | public class ProductionTeamController {
|
| | |
|
| | | private final ProductionTeamService productionTeamService;
|
| | |
|
| | | public ProductionTeamController(ProductionTeamService productionTeamService) {
|
| | | this.productionTeamService = productionTeamService;
|
| | | }
|
| | | private ProductionTeamService productionTeamService;
|
| | |
|
| | | /**
|
| | | * 创建班组
|