jiangqs
2023-05-07 2cc5f6295aeba326b82deaf5f8bded61b9e1ae16
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.ruoyi.system.controller.business;
 
import com.ruoyi.common.core.domain.R;
import com.ruoyi.system.domain.dto.AppAgreementDto;
import com.ruoyi.system.domain.vo.AppAgreementVo;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
 
/**
 * @author jqs34
 * @ClassName MerConfigController
 * @description: TODO
 * @date 2023年05月07日
 * @version: 1.0
 */
@Api(value = "商户配置相关接口", tags = "商户配置相关接口", description = "商户配置相关接口")
@RestController
@RequestMapping("/mer/config")
public class MerConfigController {
    
 
}