package com.dy.pipIrrIrrigate.irrigateUnit; import io.swagger.v3.oas.annotations.tags.Tag; import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** * @author :WuZeYu * @Date :2024/5/16 18:07 * @LastEditTime :2024/5/16 18:07 * @Description */ @Slf4j @Tag(name = "灌溉单元", description = "灌溉单元") @RestController @RequestMapping(path = "irrigate/unit") @RequiredArgsConstructor public class IrrigateUnitCtrl { @Autowired private IrrigateUnitSv irrigateUnitSv; }