//------------------------------------------------------------------------------ // // This code was generated by a CodeSmith Template. // // DO NOT MODIFY contents of this file. Changes to this // file will be lost if the code is regenerated. // Author:Yubao Li // //------------------------------------------------------------------------------ using System.ComponentModel; namespace OpenAuth.App.Request { /// /// 创建工作流请求 /// public class UpdateFlowInstanceReq : NodeDesignateReq { /// /// 待更改的流程实例ID /// public string Id { get; set; } /// /// 实例编号 /// [Description("实例编号")] public string Code { get; set; } /// /// 自定义名称 /// [Description("自定义名称")] public string CustomName { get; set; } /// /// 数据库名称 /// [Description("数据库名称")] public string DbName { get; set; } /// /// 表单数据 /// [Description("表单数据")] public string FrmData { get; set; } /// /// 所属部门 /// [Description("所属部门")] public string OrgId { get; set; } /// /// 实例备注 /// [Description("实例备注")] public string Description { get; set; } } }