liujie
2023-04-06 30cb1d32796a1b482d44bd424fdfe28c26b87be9
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
27
28
29
30
31
32
package com.stylefeng.guns.modular.system.controller;
 
import com.stylefeng.guns.core.base.controller.BaseController;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.beans.factory.annotation.Autowired;
import com.stylefeng.guns.core.log.LogObjectHolder;
import org.springframework.web.bind.annotation.RequestParam;
import com.stylefeng.guns.modular.system.service.ITUserFeeSettingService;
 
/**
 * 控制器
 *
 * @author fengshuonan
 * @Date 2023-01-11 09:36:20
 */
@Controller
@RequestMapping("/tUserFeeSetting")
public class TUserFeeSettingController extends BaseController {
 
 
    @Autowired
    private ITUserFeeSettingService tUserFeeSettingService;
 
 
 
 
 
}