Commit 132d0dbe authored by tangf's avatar tangf

添加常量

parent 92ee709e
...@@ -568,6 +568,7 @@ public class RegisterServiceImpl implements RegisterService { ...@@ -568,6 +568,7 @@ public class RegisterServiceImpl implements RegisterService {
companyBankReqVo.setId(StringHelper.getNewID()); companyBankReqVo.setId(StringHelper.getNewID());
companyBankReqVo.setValidateCode(reqVo.getVerifyCode()); companyBankReqVo.setValidateCode(reqVo.getVerifyCode());
companyReqVo.getBankList().add(companyBankReqVo); companyReqVo.getBankList().add(companyBankReqVo);
ResponseResult result = payFeign.setCompanyInfo(companyReqVo); ResponseResult result = payFeign.setCompanyInfo(companyReqVo);
if (null == result || !"00".equals(result.getCode())){ if (null == result || !"00".equals(result.getCode())){
throw new CodeException("保存商户失败,请重试"); throw new CodeException("保存商户失败,请重试");
......
...@@ -9,6 +9,7 @@ import java.util.List; ...@@ -9,6 +9,7 @@ import java.util.List;
* @create 2019/5/30 18:10 * @create 2019/5/30 18:10
*/ */
public class AuthorityListByLevelResVo extends AuthorityVo { public class AuthorityListByLevelResVo extends AuthorityVo {
List<AuthorityListByLevelResVo> childList; List<AuthorityListByLevelResVo> childList;
public List<AuthorityListByLevelResVo> getChildList() { public List<AuthorityListByLevelResVo> getChildList() {
......
spring: spring:
profiles: profiles:
active: dev active: test
application: application:
name: pd-user name: pd-user
cloud: cloud:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment