//------------------------------------------------------------------------------
//
// 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 WFFrmMain : Entity
{
public WFFrmMain()
{
this.FrmCode= string.Empty;
this.FrmName= string.Empty;
this.FrmType= string.Empty;
this.FrmTable= string.Empty;
this.FrmTableId= string.Empty;
this.FrmContent= string.Empty;
this.FrmDbId= string.Empty;
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 FrmCode { get; set; }
///
/// 表单名称
///
public string FrmName { get; set; }
///
/// 表单分类
///
public string FrmType { get; set; }
///
/// 数据表
///
public string FrmTable { get; set; }
///
/// 关联表的主键
///
public string FrmTableId { get; set; }
///
/// 是否需要建表0不建表,1建表
///
public int? IsSystemTable { get; set; }
///
/// 表单内容
///
public string FrmContent { get; set; }
///
/// 排序码
///
public int? SortCode { get; set; }
///
/// 删除标记
///
public int? DeleteMark { get; set; }
///
/// 数据库Id
///
public string FrmDbId { get; set; }
///
/// 有效
///
public int? EnabledMark { 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; }
}
}