You can not 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.9 KiB
145 lines
3.9 KiB
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SqlSugar;
|
|
|
|
namespace Entity.Sugar
|
|
{
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[SugarTable("SETB_CMS_Exhibition_Statistics")]
|
|
public partial class SETB_CMS_Exhibition_Statistics : ModelContext
|
|
{
|
|
public SETB_CMS_Exhibition_Statistics()
|
|
{
|
|
|
|
|
|
}
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public string StatisticsID { get; set; }
|
|
public const string CN_STATISTICSID = "StatisticsID";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public string ExhibitionID { get; set; }
|
|
public const string CN_EXHIBITIONID = "ExhibitionID";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public string Year { get; set; }
|
|
public const string CN_YEAR = "Year";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public float ExhibSize { get; set; }
|
|
public const string CN_EXHIBSIZE = "ExhibSize";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public int VisitorCount { get; set; }
|
|
public const string CN_VISITORCOUNT = "VisitorCount";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public int IntVisitorCount { get; set; }
|
|
public const string CN_INTVISITORCOUNT = "IntVisitorCount";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public int ExhibitorCount { get; set; }
|
|
public const string CN_EXHIBITORCOUNT = "ExhibitorCount";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
|
|
public string CreateUser { get; set; }
|
|
public const string CN_CREATEUSER = "CreateUser";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public DateTime? CreateDate { get; set; }
|
|
public const string CN_CREATEDATE = "CreateDate";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string ModifyUser { get; set; }
|
|
public const string CN_MODIFYUSER = "ModifyUser";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public DateTime? ModifyDate { get; set; }
|
|
public const string CN_MODIFYDATE = "ModifyDate";
|
|
|
|
/// <summary>
|
|
/// Desc:Y摸Τ N摸礚
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string Effective { get; set; }
|
|
public const string CN_EFFECTIVE = "Effective";
|
|
|
|
/// <summary>
|
|
/// Desc:Y埃 Nゼ埃
|
|
/// Default:N
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string DelStatus { get; set; }
|
|
public const string CN_DELSTATUS = "DelStatus";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public int? OrderByValue { get; set; }
|
|
public const string CN_ORDERBYVALUE = "OrderByValue";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
//[SugarColumn(IsIdentity = true)]
|
|
public string OrgID { get; set; }
|
|
public const string CN_ORGID = "OrgID";
|
|
|
|
}
|
|
}
|