You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

145 lines
3.4 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("sys_program_objects")]
[Serializable]
public class SysProgramObjects : BaseEntity
{
[Column("prog_no")]
[DisplayName(" ")]
public string ProgNo { get; set; }
[Column("form_no")]
[DisplayName(" ")]
public string FormNo { get; set; }
[Column("table_name")]
[DisplayName(" ")]
public string TableName { get; set; }
[Column("view_name")]
[DisplayName(" ")]
public string ViewName { get; set; }
[Column("obj_no")]
[DisplayName(" ")]
public string ObjNo { get; set; }
[Column("blank")]
[DisplayName(" ")]
public string Blank { get; set; }
[Column("map_name")]
[DisplayName(" ")]
public string MapName { get; set; }
[Column("caption")]
[DisplayName(" ")]
public string Caption { get; set; }
[Column("cmdbtn")]
[DisplayName(" ")]
public string Cmdbtn { get; set; }
[Column("col_index")]
[DisplayName(" ")]
public int? ColIndex { get; set; }
[Column("datadef")]
[DisplayName(" ")]
public string Datadef { get; set; }
[Column("datatype")]
[DisplayName(" ")]
public int? Datatype { get; set; }
[Column("lowerupper")]
[DisplayName(" ")]
public int? Lowerupper { get; set; }
[Column("dsp_name")]
[DisplayName(" ")]
public string DspName { get; set; }
[Column("keyintype")]
[DisplayName(" ")]
public int? Keyintype { get; set; }
[Column("lanauage")]
[DisplayName(" ")]
public string Lanauage { get; set; }
[Column("gb")]
[DisplayName(" ")]
public string Gb { get; set; }
[Column("tw")]
[DisplayName(" ")]
public string Tw { get; set; }
[Column("selectmode")]
[DisplayName(" ")]
public decimal Selectmode { get; set; }
[Column("width")]
[DisplayName(" ")]
public decimal Width { get; set; }
[Column("winkey")]
[DisplayName(" ")]
public string Winkey { get; set; }
[Column("winlist")]
[DisplayName(" ")]
public string Winlist { get; set; }
[Column("winselectkey")]
[DisplayName(" ")]
public string Winselectkey { get; set; }
[Column("winselectval")]
[DisplayName(" ")]
public string Winselectval { get; set; }
[Column("winsource")]
[DisplayName(" ")]
public string Winsource { get; set; }
[Column("wintitle")]
[DisplayName(" ")]
public string Wintitle { get; set; }
[Column("winwidth")]
[DisplayName(" ")]
public string Winwidth { get; set; }
[Column("frozen")]
[DisplayName(" ")]
public string Frozen { get; set; }
[Column("datadig")]
[DisplayName(" ")]
public string Datadig { get; set; }
[Column("expression")]
[DisplayName(" ")]
public string Expression { get; set; }
[Column("factor_id")]
[DisplayName(" ")]
public int FactorId { get; set; }
[Column("ruid")]
[DisplayName(" ")]
public int Ruid { get; set; }
}
}