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;
|
2020-10-22 14:59:36 +08:00
|
|
|
|
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>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
[Table("Form")]
|
2021-03-13 16:21:56 +08:00
|
|
|
|
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;
|
2020-10-22 14:59:36 +08:00
|
|
|
|
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;
|
2020-10-22 14:59:36 +08:00
|
|
|
|
this.DeleteMark= 0;
|
2018-03-16 17:33:54 +08:00
|
|
|
|
this.DbName= string.Empty;
|
2020-10-22 14:59:36 +08:00
|
|
|
|
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>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
[Description("表单名称")]
|
2018-02-28 17:34:27 +08:00
|
|
|
|
public string Name { get; set; }
|
2020-10-22 14:59:36 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 表单类型,0:默认动态表单;1:Web自定义表单
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("表单类型,0:默认动态表单;1:Web自定义表单")]
|
|
|
|
|
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>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
[Description("字段个数")]
|
2018-02-28 17:34:27 +08:00
|
|
|
|
public int Fields { get; set; }
|
2017-10-11 16:19:34 +08:00
|
|
|
|
/// <summary>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
/// 表单中的控件属性描述
|
2017-10-11 16:19:34 +08:00
|
|
|
|
/// </summary>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
[Description("表单中的控件属性描述")]
|
2018-02-28 17:34:27 +08:00
|
|
|
|
public string ContentData { get; set; }
|
2017-10-11 16:19:34 +08:00
|
|
|
|
/// <summary>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
/// 表单控件位置模板
|
2017-10-11 16:19:34 +08:00
|
|
|
|
/// </summary>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
[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>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
[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>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
[Description("排序码")]
|
2018-02-28 17:34:27 +08:00
|
|
|
|
public int SortCode { get; set; }
|
2017-10-11 16:19:34 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 删除标记
|
|
|
|
|
/// </summary>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
[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>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
[Description("数据库名称")]
|
2018-03-16 17:33:54 +08:00
|
|
|
|
public string DbName { get; set; }
|
2017-10-11 16:19:34 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 有效
|
|
|
|
|
/// </summary>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
[Description("有效")]
|
|
|
|
|
public int Disabled { get; set; }
|
2017-10-11 16:19:34 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 备注
|
|
|
|
|
/// </summary>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
[Description("备注")]
|
2017-10-11 16:19:34 +08:00
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 创建时间
|
|
|
|
|
/// </summary>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
[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>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
[Description("创建用户主键")]
|
2017-10-11 16:19:34 +08:00
|
|
|
|
public string CreateUserId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 创建用户
|
|
|
|
|
/// </summary>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
[Description("创建用户")]
|
2017-10-11 16:19:34 +08:00
|
|
|
|
public string CreateUserName { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 修改时间
|
|
|
|
|
/// </summary>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
[Description("修改时间")]
|
2017-10-11 16:19:34 +08:00
|
|
|
|
public System.DateTime? ModifyDate { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 修改用户主键
|
|
|
|
|
/// </summary>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
[Description("修改用户主键")]
|
2017-10-11 16:19:34 +08:00
|
|
|
|
public string ModifyUserId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 修改用户
|
|
|
|
|
/// </summary>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
[Description("修改用户")]
|
2017-10-11 16:19:34 +08:00
|
|
|
|
public string ModifyUserName { get; set; }
|
2020-10-22 14:59:36 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 所属部门
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("所属部门")]
|
|
|
|
|
public string OrgId { get; set; }
|
2017-10-11 16:19:34 +08:00
|
|
|
|
|
|
|
|
|
}
|
2017-01-12 19:24:52 +08:00
|
|
|
|
}
|