Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yifu-mvp
Project
Project
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fangxinjiang
yifu-mvp
Commits
f62f15bb
Commit
f62f15bb
authored
Jul 07, 2022
by
huyuchen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
huyc 项目档案代码提交
parent
40814872
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
71 additions
and
1 deletion
+71
-1
FddContractAttachInfo.java
...d/plus/v1/yifu/archives/entity/FddContractAttachInfo.java
+70
-0
FddController.java
...cloud/plus/v1/yifu/archives/controller/FddController.java
+1
-1
No files found.
yifu-archives/yifu-archives-api/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/entity/FddContractAttachInfo.java
View file @
f62f15bb
...
...
@@ -17,6 +17,7 @@
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
archives
.
entity
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableField
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity
;
...
...
@@ -191,5 +192,74 @@ public class FddContractAttachInfo extends BaseEntity {
@Schema
(
description
=
"创建人姓名"
)
private
String
createName
;
/**
* 结算主体名称
*/
@TableField
(
exist
=
false
)
@Schema
(
name
=
"结算主体名称"
)
private
String
departName
;
/**
* 客户名称
*/
@TableField
(
exist
=
false
)
@Schema
(
name
=
"客户名称"
)
private
String
customerName
;
/**
* 法大大电子合同id
*/
@TableField
(
exist
=
false
)
@Schema
(
description
=
"法大大电子合同id"
)
private
String
fddContractId
;
/**
* 定稿状态 1未定稿 2.定稿成功
*/
@TableField
(
exist
=
false
)
@Schema
(
description
=
"定稿状态 1未定稿 2.定稿成功"
)
private
String
taskStatus
;
/**
* 签署状态 1.未签署 2 已签署 4 已撤销 5已拒签
*/
@TableField
(
exist
=
false
)
@Schema
(
description
=
"签署状态 1.未签署 2 已签署 4 已撤销 5已拒签"
)
private
String
signStatus
;
/**
* 签署发送方状态 1.未签署 2 已签署 3 已拒签 4 已撤销
*/
@TableField
(
exist
=
false
)
@Schema
(
description
=
"签署发送方状态 1.未签署 2 已签署 3 已拒签 4 已撤销"
)
private
String
sendSignStatus
;
/**
* 签署接收方状态 1.未签署 2 已签署 3 已拒签 4 已撤销
*/
@TableField
(
exist
=
false
)
@Schema
(
description
=
"签署接收方状态 1.未签署 2 已签署 3 已拒签 4 已撤销"
)
private
String
receiveSignStatus
;
/**
* 定稿任务编号
*/
@TableField
(
exist
=
false
)
@Schema
(
description
=
"定稿任务编号"
)
private
String
taskId
;
/**
* 签署任务编号
*/
@TableField
(
exist
=
false
)
@Schema
(
description
=
"签署任务编号"
)
private
String
signTaskId
;
/**
* 草稿id,用于生成后续签署任务
*/
@TableField
(
exist
=
false
)
@Schema
(
description
=
"草稿id,用于生成后续签署任务"
)
private
String
draftId
;
}
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/controller/FddController.java
View file @
f62f15bb
...
...
@@ -262,7 +262,7 @@ public class FddController {
}
return
R
.
ok
();
}
else
if
(
StringUtils
.
equals
(
fddEvent
,
"notifyUrlVerify"
))
{
return
R
.
ok
();
return
R
.
ok
(
null
,
"success"
);
}
return
R
.
failed
(
"失败"
);
}
...
...
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