xiaoyong931011
2022-05-19 e64ac50998ba5fe69bac4baa667d0f5a216bc670
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package cc.mrbird.febs.mall.controller;
 
import cc.mrbird.febs.common.entity.FebsConstant;
import cc.mrbird.febs.common.utils.FebsUtil;
import lombok.RequiredArgsConstructor;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
 
 
@Controller("mallSystemView")
@RequestMapping(FebsConstant.VIEW_PREFIX + "modules/system")
@RequiredArgsConstructor
public class ViewSystemController {
 
    @GetMapping("profitSetting")
    public String profitSetting() {
        return FebsUtil.view("modules/system/profitSetting");
    }
}