zhubaomin
2024-08-08 9c5e4aa959de194407b7c42f9bd165c862668120
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.dy.pipIrrStatistics.card;
 
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
/**
 * @author ZhuBaoMin
 * @date 2024-08-08 9:09
 * @LastEditTime 2024-08-08 9:09
 * @Description
 */
 
@Slf4j
@RestController
@RequestMapping(path="ic-card")
@RequiredArgsConstructor
public class IcCardCtrl {
    private final IcCardSv icCardSv;
}