| | |
| | | using NewPdaSqlServer.Dto.@base; |
| | | |
| | | namespace NewPdaSqlServer.Dto.service; |
| | | |
| | | namespace NewPdaSqlServer.Dto.service; |
| | | |
| | | public class WorkflowRequestDto |
| | | { |
| | | /// <summary> |
| | | /// 用户认证令牌 |
| | | /// 用户认证令牌 |
| | | /// </summary> |
| | | public string Token { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 原始用户ID(加密前) |
| | | /// 原始用户ID(加密前) |
| | | /// </summary> |
| | | public string UserId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 流程ID(必填) |
| | | /// 流程ID(必填) |
| | | /// </summary> |
| | | public int WorkflowId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 流程标题(必填) |
| | | /// 流程标题(必填) |
| | | /// </summary> |
| | | public string RequestName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 主表数据(必填) |
| | | /// 主表数据(必填) |
| | | /// </summary> |
| | | public Dictionary<string, object> MainData { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 明细表数据(选填) |
| | | /// 明细表数据(选填) |
| | | /// </summary> |
| | | public Dictionary<string, object> DetailData { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 其他参数(选填) |
| | | /// 其他参数(选填) |
| | | /// </summary> |
| | | public Dictionary<string, object> OtherParams { get; set; } |
| | | } |