//------------------------------------------------------------------------------ // // 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; using System.Collections.Generic; using System.Text; namespace OpenAuth.Repository.Domain { /// /// 表单模板表 /// public partial class Form : Entity { public Form() { this.Name= string.Empty; this.Fields= 0; this.ContentData= string.Empty; this.ContentParse= string.Empty; this.Content= string.Empty; this.SortCode= 0; this.Delete= 0; this.FrmDbId= string.Empty; this.Enabled= 0; this.Description= string.Empty; this.CreateDate= DateTime.Now; this.CreateUserId= string.Empty; this.CreateUserName= string.Empty; this.ModifyDate= DateTime.Now; this.ModifyUserId= string.Empty; this.ModifyUserName= string.Empty; } /// /// 表单名称 /// 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 int Delete { get; set; } /// /// 数据库Id /// public string FrmDbId { get; set; } /// /// 有效 /// public int Enabled { get; set; } /// /// 备注 /// public string Description { get; set; } /// /// 创建时间 /// public System.DateTime CreateDate { get; set; } /// /// 创建用户主键 /// public string CreateUserId { get; set; } /// /// 创建用户 /// public string CreateUserName { get; set; } /// /// 修改时间 /// public System.DateTime? ModifyDate { get; set; } /// /// 修改用户主键 /// public string ModifyUserId { get; set; } /// /// 修改用户 /// public string ModifyUserName { get; set; } } }