using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace Entity.Sugar
{
///
///
///
[SugarTable("OTB_SYS_ProgramList")]
public partial class OTB_SYS_ProgramList : ModelContext
{
public OTB_SYS_ProgramList(){
}
///
/// Desc:建議使用檔名
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true)]
public string ProgramID {get;set;}
public const string CN_PROGRAMID = "ProgramID";
///
/// Desc:
/// Default:
/// Nullable:False
///
public string ProgramName {get;set;}
public const string CN_PROGRAMNAME = "ProgramName";
///
/// Desc:與SYS_ModuleList進行關聯
/// Default:
/// Nullable:False
///
public string ModuleID {get;set;}
public const string CN_MODULEID = "ModuleID";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string FilePath {get;set;}
public const string CN_FILEPATH = "FilePath";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string ImgPath {get;set;}
public const string CN_IMGPATH = "ImgPath";
///
/// Desc:例如:Add|ReAdd為新增和存儲後新增
/// Default:
/// Nullable:True
///
public string AllowRight {get;set;}
public const string CN_ALLOWRIGHT = "AllowRight";
///
/// Desc:P:程式 R:報表 S:子程式
/// Default:
/// Nullable:True
///
public string ProgramType {get;set;}
public const string CN_PROGRAMTYPE = "ProgramType";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string BackgroundCSS {get;set;}
public const string CN_BACKGROUNDCSS = "BackgroundCSS";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string GroupTag {get;set;}
public const string CN_GROUPTAG = "GroupTag";
///
/// Desc:Y:程式有效 N:程式無效
/// Default:
/// Nullable:True
///
public string Effective {get;set;}
public const string CN_EFFECTIVE = "Effective";
///
/// Desc:Y:顯示 N:不顯示
/// Default:
/// Nullable:True
///
public string ShowInList {get;set;}
public const string CN_SHOWINLIST = "ShowInList";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string ShowInHome {get;set;}
public const string CN_SHOWINHOME = "ShowInHome";
///
/// Desc:
/// Default:
/// Nullable:True
///
public bool? ShowTop {get;set;}
public const string CN_SHOWTOP = "ShowTop";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string MainTableName {get;set;}
public const string CN_MAINTABLENAME = "MainTableName";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Memo {get;set;}
public const string CN_MEMO = "Memo";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string CreateUser {get;set;}
public const string CN_CREATEUSER = "CreateUser";
///
/// Desc:
/// Default:
/// Nullable:True
///
public DateTime? CreateDate {get;set;}
public const string CN_CREATEDATE = "CreateDate";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string ModifyUser {get;set;}
public const string CN_MODIFYUSER = "ModifyUser";
///
/// Desc:
/// Default:
/// Nullable:True
///
public DateTime? ModifyDate {get;set;}
public const string CN_MODIFYDATE = "ModifyDate";
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true)]
public string OrgID {get;set;}
public const string CN_ORGID = "OrgID";
}
}