cuida
8 天以前 fd60f7ce6025c761e2836ffcbbb70894aee946fa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.by4cloud.platformx.business.controller;
 
import com.by4cloud.platformx.business.service.ContractService;
import io.swagger.v3.oas.annotations.security.SecurityRequirement;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.RequiredArgsConstructor;
import org.springframework.http.HttpHeaders;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
/**
 * @author cd
 * @description
 * @date 2026/4/29 14:05
 **/
@RestController
@RequiredArgsConstructor
@RequestMapping("/contract" )
@Tag(description = "contract" , name = "合同表管理" )
@SecurityRequirement(name = HttpHeaders.AUTHORIZATION)
public class ContractController {
 
    private final ContractService contractService;
}