//------------------------------------------------------------------------------
//
// 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 Infrastructure;
namespace OpenAuth.App.Response
{
///
/// 表单模板表
///
public class FormResp
{
///
/// 表单名称
///
public string Id { get; set; }
///
/// 表单名称
///
public string Name { get; set; }
///
/// 字段个数
///
public int Fields { get; set; }
///
/// 表单类型,0:默认动态表单;1:Web自定义表单
///
public int FrmType { get; set; }
///
/// 系统页面标识,当表单类型为用Web自定义的表单时,需要标识加载哪个页面
///
public string WebId { get; set; }
///
/// 表单中的字段数据
///
public string ContentData { get; set; }
///
/// 表单替换的模板 经过处理
///
public string ContentParse { get; set; }
///
/// 表单原html模板未经处理的
///
public string Content { get; set; }
///
/// 表单的数据
///
public string FrmData { 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); }
}
public string[] CanWriteFormItemIds { get; set; }
///
/// 用户显示(表单项包含读写控制权限)
///
public string HtmlWithCanWriteIds
{
get
{
if (this.FrmType != Define.FORM_TYPE_DYNAMIC) //只有开原版动态表单才需要转换
{
return string.Empty;
}
return FormUtil.GetHtml(this.ContentData, this.ContentParse, this.FrmData,"",this.CanWriteFormItemIds);
}
}
}
}