huliguo
2 天以前 5d7b65670282a4fad015e37d567cfa171b162052
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;
}