package com.panzhihua.service_community.api;
|
|
import com.panzhihua.service_community.service.ComActReserveService;
|
import lombok.extern.slf4j.Slf4j;
|
import org.springframework.web.bind.annotation.*;
|
|
import javax.annotation.Resource;
|
|
/**
|
* 预约登记
|
*/
|
@Slf4j
|
@RestController
|
@RequestMapping("/reserve")
|
public class ComActReserveApi {
|
|
@Resource
|
private ComActReserveService comActReserveService;
|
|
|
}
|