Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
T
tcm-system
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
TCM
tcm-system
Commits
4a2ddf1d
Commit
4a2ddf1d
authored
Jul 19, 2019
by
zjy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user/role/tright 7.19
parent
53883e85
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
111 additions
and
27 deletions
+111
-27
RegisterServiceImpl.java
...gding/web/authority/service/impl/RegisterServiceImpl.java
+82
-19
LoginResVo.java
...ava/com/pangding/web/authority/vo/cloudvo/LoginResVo.java
+10
-0
CompanyBankCardGetReqVo.java
...gding/web/authority/vo/reqvo/CompanyBankCardGetReqVo.java
+10
-0
CompanyBankReqVo.java
...com/pangding/web/authority/vo/reqvo/CompanyBankReqVo.java
+3
-3
LoginCompanyResVo.java
...om/pangding/web/authority/vo/resvo/LoginCompanyResVo.java
+6
-5
No files found.
src/main/java/com/pangding/web/authority/service/impl/RegisterServiceImpl.java
View file @
4a2ddf1d
This diff is collapsed.
Click to expand it.
src/main/java/com/pangding/web/authority/vo/cloudvo/LoginResVo.java
View file @
4a2ddf1d
...
@@ -28,6 +28,16 @@ public class LoginResVo {
...
@@ -28,6 +28,16 @@ public class LoginResVo {
private
List
<
AuthorityListByLevelResVo
>
authorityListByLevel
;
private
List
<
AuthorityListByLevelResVo
>
authorityListByLevel
;
private
Merchant
merchant
;
public
Merchant
getMerchant
()
{
return
merchant
;
}
public
void
setMerchant
(
Merchant
merchant
)
{
this
.
merchant
=
merchant
;
}
public
String
getUrl
()
{
public
String
getUrl
()
{
return
url
;
return
url
;
}
}
...
...
src/main/java/com/pangding/web/authority/vo/reqvo/CompanyBankCardGetReqVo.java
View file @
4a2ddf1d
...
@@ -13,6 +13,16 @@ public class CompanyBankCardGetReqVo {
...
@@ -13,6 +13,16 @@ public class CompanyBankCardGetReqVo {
private
Integer
isDefault
;
private
Integer
isDefault
;
private
String
bankCardCode
;
public
String
getBankCardCode
()
{
return
bankCardCode
;
}
public
void
setBankCardCode
(
String
bankCardCode
)
{
this
.
bankCardCode
=
bankCardCode
;
}
public
Integer
getIsDefault
()
{
public
Integer
getIsDefault
()
{
return
isDefault
;
return
isDefault
;
}
}
...
...
src/main/java/com/pangding/web/authority/vo/reqvo/CompanyBankReqVo.java
View file @
4a2ddf1d
...
@@ -33,7 +33,7 @@ public class CompanyBankReqVo {
...
@@ -33,7 +33,7 @@ public class CompanyBankReqVo {
/**
/**
* 类型 公司 个人
* 类型 公司 个人
*/
*/
private
String
type
;
private
Integer
type
;
/**
/**
* 公司id
* 公司id
...
@@ -115,11 +115,11 @@ public class CompanyBankReqVo {
...
@@ -115,11 +115,11 @@ public class CompanyBankReqVo {
this
.
bankCode
=
bankCode
;
this
.
bankCode
=
bankCode
;
}
}
public
String
getType
()
{
public
Integer
getType
()
{
return
type
;
return
type
;
}
}
public
void
setType
(
String
type
)
{
public
void
setType
(
Integer
type
)
{
this
.
type
=
type
;
this
.
type
=
type
;
}
}
...
...
src/main/java/com/pangding/web/authority/vo/resvo/LoginCompanyResVo.java
View file @
4a2ddf1d
package
com
.
pangding
.
web
.
authority
.
vo
.
resvo
;
package
com
.
pangding
.
web
.
authority
.
vo
.
resvo
;
import
com.pangding.web.authority.vo.CompanyBankCardVo
;
import
com.pangding.web.authority.vo.CompanyVo
;
import
com.pangding.web.authority.vo.CompanyVo
;
import
java.util.List
;
import
java.util.List
;
...
@@ -11,7 +12,7 @@ import java.util.List;
...
@@ -11,7 +12,7 @@ import java.util.List;
public
class
LoginCompanyResVo
{
public
class
LoginCompanyResVo
{
private
CompanyVo
companyVo
;
private
CompanyVo
companyVo
;
private
List
<
String
>
bankCardCode
List
;
private
List
<
CompanyBankCardVo
>
bankCardVo
List
;
public
CompanyVo
getCompanyVo
()
{
public
CompanyVo
getCompanyVo
()
{
return
companyVo
;
return
companyVo
;
...
@@ -21,11 +22,11 @@ public class LoginCompanyResVo {
...
@@ -21,11 +22,11 @@ public class LoginCompanyResVo {
this
.
companyVo
=
companyVo
;
this
.
companyVo
=
companyVo
;
}
}
public
List
<
String
>
getBankCardCode
List
()
{
public
List
<
CompanyBankCardVo
>
getBankCardVo
List
()
{
return
bankCard
Code
List
;
return
bankCard
Vo
List
;
}
}
public
void
setBankCard
CodeList
(
List
<
String
>
bankCardCode
List
)
{
public
void
setBankCard
VoList
(
List
<
CompanyBankCardVo
>
bankCardVo
List
)
{
this
.
bankCard
CodeList
=
bankCardCode
List
;
this
.
bankCard
VoList
=
bankCardVo
List
;
}
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment