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;
|
|
|
|
|
|
}
|