Helius
2022-05-19 54852835a9b1f9fe3574264fa9e2611f1d20e621
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");
    }
}