| | |
| | | using FlexJobApi.Core.Models.ElectronSignServer.PersonalUserReals; |
| | | using FlexJobApi.Core.Models.ElectronSignServer.ContractTemplates; |
| | | using FlexJobApi.Core.Models.ElectronSignServer.PersonalUserReals; |
| | | using MediatR; |
| | | using System; |
| | | using System.Collections.Generic; |
| | |
| | | public Guid OutUserId { get; set; } |
| | | public EnumElectronSignRealStatus Status { get; set; } |
| | | } |
| | | |
| | | public class ElectronSignCallbackCommandContractSignModel |
| | | { |
| | | /// <summary> |
| | | /// 用户类型(10企业 20个人) |
| | | /// </summary> |
| | | public EnumElectronSignUserType UserType { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 外部企业/用户Id |
| | | /// </summary> |
| | | public string OutUserId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 外部合同Id |
| | | /// </summary> |
| | | public string OutContractId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 状态(1待创建 2已创建 3已发送,正在签署中 4拒绝签署,已取消 5已完成 9已过期 99合同检测无效) |
| | | /// </summary> |
| | | public EnumElectronSignContractStatus Status { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 合同文件地址 |
| | | /// </summary> |
| | | public string ContactUrl { get; set; } |
| | | } |
| | | } |