package com.ruoyi.web.controller.errand; import com.ruoyi.errand.service.CommunityCourierService; import io.swagger.annotations.Api; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.validation.annotation.Validated; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @Validated @RestController @RequestMapping(value = "/communityCourier") @Api(value = "小区 - 跑腿员关联", tags = "小区 - 跑腿员关联操作控制器") @Slf4j public class CommunityCourierController { @Autowired private CommunityCourierService communityCourierService; }