OpenAuth.Net/OpenAuth.Repository/Domain/Form.cs

143 lines
4.7 KiB
C#
Raw Normal View History

2017-10-11 16:19:34 +08:00
//------------------------------------------------------------------------------
// <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.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
using OpenAuth.Repository.Core;
2017-10-11 16:19:34 +08:00
2017-11-29 20:49:14 +08:00
namespace OpenAuth.Repository.Domain
2017-10-11 16:19:34 +08:00
{
/// <summary>
/// 表单模板表
/// </summary>
[Table("Form")]
public partial class Form : StringEntity
2017-10-11 16:19:34 +08:00
{
2018-02-28 17:34:27 +08:00
public Form()
2017-10-11 16:19:34 +08:00
{
2018-02-28 17:34:27 +08:00
this.Name= string.Empty;
this.FrmType= 0;
this.WebId= string.Empty;
2018-02-28 17:34:27 +08:00
this.Fields= 0;
this.ContentData= string.Empty;
this.ContentParse= string.Empty;
this.Content= string.Empty;
this.SortCode= 0;
this.DeleteMark= 0;
2018-03-16 17:33:54 +08:00
this.DbName= string.Empty;
this.Disabled= 0;
2017-10-11 16:19:34 +08:00
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>
[Description("表单名称")]
2018-02-28 17:34:27 +08:00
public string Name { get; set; }
/// <summary>
/// 表单类型0默认动态表单1Web自定义表单
/// </summary>
[Description("表单类型0默认动态表单1Web自定义表单")]
public int FrmType { get; set; }
/// <summary>
/// 系统页面标识当表单类型为用Web自定义的表单时需要标识加载哪个页面
/// </summary>
[Description("系统页面标识当表单类型为用Web自定义的表单时需要标识加载哪个页面")]
public string WebId { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
2018-02-28 17:34:27 +08:00
/// 字段个数
2017-10-11 16:19:34 +08:00
/// </summary>
[Description("字段个数")]
2018-02-28 17:34:27 +08:00
public int Fields { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
/// 表单中的控件属性描述
2017-10-11 16:19:34 +08:00
/// </summary>
[Description("表单中的控件属性描述")]
2018-02-28 17:34:27 +08:00
public string ContentData { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
/// 表单控件位置模板
2017-10-11 16:19:34 +08:00
/// </summary>
[Description("表单控件位置模板")]
2018-02-28 17:34:27 +08:00
public string ContentParse { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
2018-03-16 17:33:54 +08:00
/// 表单原html模板未经处理的
2017-10-11 16:19:34 +08:00
/// </summary>
[Description("表单原html模板未经处理的")]
2018-02-28 17:34:27 +08:00
public string Content { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
/// 排序码
/// </summary>
[Description("排序码")]
2018-02-28 17:34:27 +08:00
public int SortCode { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
/// 删除标记
/// </summary>
[Description("删除标记")]
public int DeleteMark { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
2018-03-16 17:33:54 +08:00
/// 数据库名称
2017-10-11 16:19:34 +08:00
/// </summary>
[Description("数据库名称")]
2018-03-16 17:33:54 +08:00
public string DbName { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
/// 有效
/// </summary>
[Description("有效")]
public int Disabled { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
/// 备注
/// </summary>
[Description("备注")]
2017-10-11 16:19:34 +08:00
public string Description { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[Description("创建时间")]
2018-02-28 17:34:27 +08:00
public System.DateTime CreateDate { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
/// 创建用户主键
/// </summary>
[Description("创建用户主键")]
2017-10-11 16:19:34 +08:00
public string CreateUserId { get; set; }
/// <summary>
/// 创建用户
/// </summary>
[Description("创建用户")]
2017-10-11 16:19:34 +08:00
public string CreateUserName { get; set; }
/// <summary>
/// 修改时间
/// </summary>
[Description("修改时间")]
2017-10-11 16:19:34 +08:00
public System.DateTime? ModifyDate { get; set; }
/// <summary>
/// 修改用户主键
/// </summary>
[Description("修改用户主键")]
2017-10-11 16:19:34 +08:00
public string ModifyUserId { get; set; }
/// <summary>
/// 修改用户
/// </summary>
[Description("修改用户")]
2017-10-11 16:19:34 +08:00
public string ModifyUserName { get; set; }
/// <summary>
/// 所属部门
/// </summary>
[Description("所属部门")]
public string OrgId { get; set; }
2017-10-11 16:19:34 +08:00
}
2017-01-12 19:24:52 +08:00
}