资质审核流程信息回调接口
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
package com.cool.store.dto.mdm;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
|
||||
@Data
|
||||
public class CallbackDto {
|
||||
//
|
||||
// private Owner owner;
|
||||
//
|
||||
// private long modifiedTime;
|
||||
//
|
||||
// private Creator creator;
|
||||
//
|
||||
// private CreatorDepartment creatorDepartment;
|
||||
//
|
||||
// private String authCode;
|
||||
//
|
||||
// private Modifier modifier;
|
||||
//
|
||||
// private int amtDeposit;
|
||||
//
|
||||
// private FraSource fraSource;
|
||||
//
|
||||
// private String intendedSignerTel;
|
||||
//
|
||||
// private String sequenceNo;
|
||||
//
|
||||
// private String sequenceStatus;
|
||||
//
|
||||
// private String instanceId;
|
||||
//
|
||||
// private OwnerDepartment ownerDepartment;
|
||||
//
|
||||
// private SelfObject selfObject;
|
||||
//
|
||||
// private String name;
|
||||
//
|
||||
// private long createdTime;
|
||||
//
|
||||
// private String id;
|
||||
//
|
||||
// private long intendedSignDate;
|
||||
//
|
||||
// private String intendedSigner;
|
||||
//
|
||||
// private String systemsource;
|
||||
|
||||
}
|
||||
@@ -33,6 +33,12 @@ public class HyPartnerCertificationInfoDO implements Serializable {
|
||||
@ApiModelProperty("合作关系:1总部下属;2小区代直营;3县代直营;4县代下属;5区代直营;6区代下属")
|
||||
private String partnership;
|
||||
|
||||
@ApiModelProperty("资质审核流程id")
|
||||
private String qualifyVerifyId;
|
||||
|
||||
@ApiModelProperty("意向合同编号")
|
||||
private String intentionContractNo;
|
||||
|
||||
@ApiModelProperty("意向签约时间")
|
||||
private Date wantSignTime;
|
||||
|
||||
|
||||
@@ -54,11 +54,17 @@ public class HyPartnerInterviewDO implements Serializable {
|
||||
@ApiModelProperty("授权码")
|
||||
private String authCode;
|
||||
|
||||
@ApiModelProperty("资质审核流程id")
|
||||
private String qualifyVerifyId;
|
||||
@ApiModelProperty("通过函编码")
|
||||
private String passCode;
|
||||
|
||||
@ApiModelProperty("函文件url")
|
||||
private String passFileUrl;
|
||||
@ApiModelProperty("函文件Pdf url")
|
||||
private String passPdfUrl;
|
||||
|
||||
@ApiModelProperty("函文件image url")
|
||||
private String passImageUrl;
|
||||
|
||||
@ApiModelProperty("审核通过时间")
|
||||
private Date passTime;
|
||||
|
||||
@ApiModelProperty("有效期")
|
||||
private Date expiryDate;
|
||||
|
||||
@@ -12,9 +12,9 @@ import lombok.Data;
|
||||
@Data
|
||||
@ApiModel
|
||||
public class GetFreeBusyListReq {
|
||||
@ApiModelProperty("开始时间")
|
||||
@ApiModelProperty(value = "开始时间", required = true)
|
||||
private String startDate;
|
||||
@ApiModelProperty("结束时间")
|
||||
@ApiModelProperty(value = "结束时间",required = true)
|
||||
private String endDate;
|
||||
@ApiModelProperty("加盟商用户ID")
|
||||
private String partnerId;
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
package com.cool.store.request;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@Api("资质审核回调入参")
|
||||
public class QualificationCallbackReq {
|
||||
|
||||
@ApiModelProperty(value = "审核流程id", required = true)
|
||||
private String instanceId;
|
||||
|
||||
@ApiModelProperty(value = "流程状态 已完成:FINISHED, 已作废:CANCELED", required = true)
|
||||
private String sequenceStatus;
|
||||
|
||||
@ApiModelProperty(value = "意向签约人", required = true)
|
||||
private String intendedSigner;
|
||||
|
||||
@ApiModelProperty(value = "审核通过时间", required = true)
|
||||
private long modifiedTime;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user