| | |
| | | import com.xcong.excoin.common.controller.BaseController;
|
| | | import com.xcong.excoin.common.entity.FebsConstant;
|
| | | import com.xcong.excoin.common.utils.FebsUtil;
|
| | | import com.xcong.excoin.modules.member.dto.MemberLimitDto;
|
| | | import com.xcong.excoin.modules.member.entity.MemberEntity;
|
| | | import com.xcong.excoin.modules.member.service.IMemberService;
|
| | | import com.xcong.excoin.modules.member.vo.MemberAuthenticationVo;
|
| | |
| | | import org.springframework.web.bind.annotation.GetMapping;
|
| | | import org.springframework.web.bind.annotation.PathVariable;
|
| | | import org.springframework.web.bind.annotation.RequestMapping;
|
| | |
|
| | | import java.util.Map;
|
| | |
|
| | | /**
|
| | | * @author wzy
|
| | |
| | | public String memberTest() {
|
| | | return FebsUtil.view("modules/member/memberTest");
|
| | | }
|
| | |
|
| | | @GetMapping("memberLimit")
|
| | | @RequiresPermissions("member:update")
|
| | | public String memberLimit(Model model) {
|
| | | MemberLimitDto stringStringMap = memberService.memberLimit();
|
| | | model.addAttribute("member",stringStringMap);
|
| | | return FebsUtil.view("modules/member/limit");
|
| | | }
|
| | |
|
| | |
|
| | | }
|