//------------------------------------------------------------------------------ // // 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.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; using System.Text; using OpenAuth.Repository.Core; namespace OpenAuth.App.Request { /// /// 代码生成器的字段信息 /// [Table("BuilderTableColumn")] public partial class AddOrUpdateBuilderTableColumnReq { /// /// 编号 /// public string Id { get; set; } /// /// 归属表编号 /// public string TableId { get; set; } /// /// 表名称 /// public string TableName { get; set; } /// /// 列名称 /// public string ColumnName { get; set; } /// /// 列描述 /// public string Remark { get; set; } /// /// 列类型 /// public string ColumnType { get; set; } /// /// 实体类型 /// public string EntityType { get; set; } /// /// 实体名称 /// public string EntityName { get; set; } /// /// 是否主键 /// public bool IsKey { get; set; } /// /// 是否自增 /// public bool IsIncrement { get; set; } /// /// 是否必填 /// public bool IsRequired { get; set; } /// /// 是否为插入字段 /// public bool IsInsert { get; set; } /// /// 是否编辑字段 /// public bool IsEdit { get; set; } /// /// 是否列表字段 /// public bool IsList { get; set; } /// /// 是否查询字段 /// public bool IsQuery { get; set; } /// /// 查询方式(等于、不等于、大于、小于、范围) /// public string QueryType { get; set; } /// /// 显示类型(文本框、文本域、下拉框、复选框、单选框、日期控件) /// public string HtmlType { get; set; } /// /// 编辑类型(文本框、文本域、下拉框、复选框、单选框、日期控件) /// public string EditType { get; set; } /// /// 排序 /// public int Sort { get; set; } /// /// 创建时间 /// public System.DateTime CreateTime { get; set; } /// /// 创建人ID /// public string CreateUserId { get; set; } /// /// 修改时间 /// public System.DateTime? UpdateTime { get; set; } /// /// 修改人ID /// public string UpdateUserId { get; set; } /// /// 修改时的行位置 /// public int? EditRow { get; set; } /// /// 修改时的列位置 /// public int? EditCol { get; set; } /// /// 修改人姓名 /// public string UpdateUserName { get; set; } /// /// 创建人姓名 /// public string CreateUserName { get; set; } /// /// 最大长度 /// public int? MaxLength { get; set; } /// /// 数据源(用于下拉框、复选框等取值) /// public string DataSource { get; set; } //todo:添加自己的请求字段 } }