Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
8
8timerapiv200
Overview
Overview
Details
Activity
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
8timerv2
8timerapiv200
Commits
890d7b22
Commit
890d7b22
authored
Apr 23, 2020
by
Administrator
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'wdz' into 'develop'
应前端需求加个未认证状态 See merge request 8timerv2/8timerapiv200!42
parents
37601696
d70e14d9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
5 deletions
+6
-5
src/main/java/cn/timer/api/bean/qyzx/QyzxEntInfoM.java
+1
-1
src/main/java/cn/timer/api/config/enums/CommonEnum.java
+4
-3
src/main/java/cn/timer/api/dto/qyzx/EntauthDto.java
+1
-1
No files found.
src/main/java/cn/timer/api/bean/qyzx/QyzxEntInfoM.java
View file @
890d7b22
...
...
@@ -95,7 +95,7 @@ public class QyzxEntInfoM extends Model<QyzxEntInfoM> {
@ApiModelProperty
(
value
=
"营业执照 "
,
example
=
"营业执照url "
)
private
String
licenseUrl
;
@ApiModelProperty
(
value
=
"认证状态 "
,
example
=
"
1 认证中,2已认证,
3认证失败 "
)
@ApiModelProperty
(
value
=
"认证状态 "
,
example
=
"
0未认证,1 认证中,2认证成功,
3认证失败 "
)
private
Integer
attestStatus
;
@ApiModelProperty
(
value
=
"认证时间 "
,
example
=
"2019-12-12 08:00:00"
)
...
...
src/main/java/cn/timer/api/config/enums/CommonEnum.java
View file @
890d7b22
...
...
@@ -49,9 +49,10 @@ public enum CommonEnum {
/**
* 企业认证状态
*/
AUTH_TYPE_UNDEREVIEW
(
1
,
"审核中"
),
AUTH_TYPE_FAILURE
(
2
,
"审核失败"
),
AUTH_TYPE_SUCCESS
(
3
,
"审核成功"
),
AUTH_TYPE_NOHADREVIEW
(
0
,
"未认证"
),
AUTH_TYPE_UNDEREVIEW
(
1
,
"认证中"
),
AUTH_TYPE_SUCCESS
(
2
,
"认证成功"
),
AUTH_TYPE_FAILURE
(
3
,
"认证失败"
),
/**
...
...
src/main/java/cn/timer/api/dto/qyzx/EntauthDto.java
View file @
890d7b22
...
...
@@ -31,7 +31,7 @@ public class EntauthDto extends Page implements Serializable{
@ApiModelProperty
(
value
=
"组织机构代码"
,
example
=
"117"
)
private
Integer
orgCode
;
@ApiModelProperty
(
value
=
"认证状态"
,
example
=
"2
未通过或3
通过"
)
@ApiModelProperty
(
value
=
"认证状态"
,
example
=
"2
通过或3未
通过"
)
private
Integer
authType
;
...
...
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