Commit f62f15bb authored by huyuchen's avatar huyuchen

huyc 项目档案代码提交

parent 40814872
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
package com.yifu.cloud.plus.v1.yifu.archives.entity; package com.yifu.cloud.plus.v1.yifu.archives.entity;
import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.TableName;
import com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity; import com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity;
...@@ -191,5 +192,74 @@ public class FddContractAttachInfo extends BaseEntity { ...@@ -191,5 +192,74 @@ public class FddContractAttachInfo extends BaseEntity {
@Schema(description ="创建人姓名") @Schema(description ="创建人姓名")
private String createName; 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;
} }
...@@ -262,7 +262,7 @@ public class FddController { ...@@ -262,7 +262,7 @@ public class FddController {
} }
return R.ok(); return R.ok();
}else if (StringUtils.equals(fddEvent, "notifyUrlVerify")) { }else if (StringUtils.equals(fddEvent, "notifyUrlVerify")) {
return R.ok(); return R.ok(null,"success");
} }
return R.failed("失败"); return R.failed("失败");
} }
......
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