huminmin
2026-05-15 549bad4e3b36337dc9d3b436efba0103cc0761ff
src/main/java/com/ruoyi/production/controller/ProductionTeamController.java
@@ -8,6 +8,7 @@
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.*;
@@ -17,15 +18,12 @@
 * 生产班组控制器
 */
@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;
    /**
     * 创建班组