//------------------------------------------------------------------------------ // // 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 // //------------------------------------------------------------------------------ namespace OpenAuth.App.Response { /// /// 表单模板表 /// public class FormResp { /// /// 表单名称 /// public string Name { get; set; } /// /// 字段个数 /// public int Fields { get; set; } /// /// 表单中的字段数据 /// public string ContentData { get; set; } /// /// 表单替换的模板 经过处理 /// public string ContentParse { get; set; } /// /// 表单原html模板未经处理的 /// public string Content { get; set; } /// /// 排序码 /// public int SortCode { get; set; } public string Description { get; set; } /// /// 数据库名称 /// public string DbName { get; set; } /// /// 用户显示 /// public string Html { get { return FormUtil.GetHtml(this); } } } }