OpenAuth.Net/OpenAuth.Repository/Domain/Form.cs
2018-03-15 23:38:14 +08:00

107 lines
3.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//------------------------------------------------------------------------------
// <autogenerated>
// 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
// </autogenerated>
//------------------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Text;
namespace OpenAuth.Repository.Domain
{
/// <summary>
/// 表单模板表
/// </summary>
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;
}
/// <summary>
/// 表单名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 字段个数
/// </summary>
public int Fields { get; set; }
/// <summary>
/// 表单中的字段数据
/// </summary>
public string ContentData { get; set; }
/// <summary>
/// 表单替换的模板 经过处理
/// </summary>
public string ContentParse { get; set; }
/// <summary>
/// 表单原html模板未经处理的仅仅用作编辑修改
/// </summary>
public string Content { get; set; }
/// <summary>
/// 排序码
/// </summary>
public int SortCode { get; set; }
/// <summary>
/// 删除标记
/// </summary>
public int Delete { get; set; }
/// <summary>
/// 数据库Id
/// </summary>
public string FrmDbId { get; set; }
/// <summary>
/// 有效
/// </summary>
public int Enabled { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Description { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public System.DateTime CreateDate { get; set; }
/// <summary>
/// 创建用户主键
/// </summary>
public string CreateUserId { get; set; }
/// <summary>
/// 创建用户
/// </summary>
public string CreateUserName { get; set; }
/// <summary>
/// 修改时间
/// </summary>
public System.DateTime? ModifyDate { get; set; }
/// <summary>
/// 修改用户主键
/// </summary>
public string ModifyUserId { get; set; }
/// <summary>
/// 修改用户
/// </summary>
public string ModifyUserName { get; set; }
}
}