1、项目环境设置
2、大屏数据调优
This commit is contained in:
+173
-4
@@ -2594,6 +2594,9 @@ namespace Model
|
||||
partial void InsertSys_RolePower(Sys_RolePower instance);
|
||||
partial void UpdateSys_RolePower(Sys_RolePower instance);
|
||||
partial void DeleteSys_RolePower(Sys_RolePower instance);
|
||||
partial void InsertSys_Schedule(Sys_Schedule instance);
|
||||
partial void UpdateSys_Schedule(Sys_Schedule instance);
|
||||
partial void DeleteSys_Schedule(Sys_Schedule instance);
|
||||
partial void InsertSys_Set(Sys_Set instance);
|
||||
partial void UpdateSys_Set(Sys_Set instance);
|
||||
partial void DeleteSys_Set(Sys_Set instance);
|
||||
@@ -9837,6 +9840,14 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
public System.Data.Linq.Table<Sys_Schedule> Sys_Schedule
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.GetTable<Sys_Schedule>();
|
||||
}
|
||||
}
|
||||
|
||||
public System.Data.Linq.Table<Sys_Set> Sys_Set
|
||||
{
|
||||
get
|
||||
@@ -363803,7 +363814,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PersonName", DbType="NVarChar(50)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PersonName", DbType="NVarChar(50) NOT NULL", CanBeNull=false)]
|
||||
public string PersonName
|
||||
{
|
||||
get
|
||||
@@ -403874,6 +403885,164 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Sys_Schedule")]
|
||||
public partial class Sys_Schedule : INotifyPropertyChanging, INotifyPropertyChanged
|
||||
{
|
||||
|
||||
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
|
||||
|
||||
private string _ScheduleId;
|
||||
|
||||
private string _ScheduleName;
|
||||
|
||||
private System.Nullable<System.DateTime> _ScheduleDate;
|
||||
|
||||
private string _ProjectId;
|
||||
|
||||
private System.Nullable<int> _SortId;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
partial void OnCreated();
|
||||
partial void OnScheduleIdChanging(string value);
|
||||
partial void OnScheduleIdChanged();
|
||||
partial void OnScheduleNameChanging(string value);
|
||||
partial void OnScheduleNameChanged();
|
||||
partial void OnScheduleDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnScheduleDateChanged();
|
||||
partial void OnProjectIdChanging(string value);
|
||||
partial void OnProjectIdChanged();
|
||||
partial void OnSortIdChanging(System.Nullable<int> value);
|
||||
partial void OnSortIdChanged();
|
||||
#endregion
|
||||
|
||||
public Sys_Schedule()
|
||||
{
|
||||
OnCreated();
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ScheduleId", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
|
||||
public string ScheduleId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ScheduleId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ScheduleId != value))
|
||||
{
|
||||
this.OnScheduleIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ScheduleId = value;
|
||||
this.SendPropertyChanged("ScheduleId");
|
||||
this.OnScheduleIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ScheduleName", DbType="NVarChar(50)")]
|
||||
public string ScheduleName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ScheduleName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ScheduleName != value))
|
||||
{
|
||||
this.OnScheduleNameChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ScheduleName = value;
|
||||
this.SendPropertyChanged("ScheduleName");
|
||||
this.OnScheduleNameChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ScheduleDate", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> ScheduleDate
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ScheduleDate;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ScheduleDate != value))
|
||||
{
|
||||
this.OnScheduleDateChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ScheduleDate = value;
|
||||
this.SendPropertyChanged("ScheduleDate");
|
||||
this.OnScheduleDateChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectId", DbType="NVarChar(50)")]
|
||||
public string ProjectId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ProjectId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ProjectId != value))
|
||||
{
|
||||
this.OnProjectIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ProjectId = value;
|
||||
this.SendPropertyChanged("ProjectId");
|
||||
this.OnProjectIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SortId", DbType="Int")]
|
||||
public System.Nullable<int> SortId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._SortId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._SortId != value))
|
||||
{
|
||||
this.OnSortIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._SortId = value;
|
||||
this.SendPropertyChanged("SortId");
|
||||
this.OnSortIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
|
||||
protected virtual void SendPropertyChanging()
|
||||
{
|
||||
if ((this.PropertyChanging != null))
|
||||
{
|
||||
this.PropertyChanging(this, emptyChangingEventArgs);
|
||||
}
|
||||
}
|
||||
|
||||
protected virtual void SendPropertyChanged(String propertyName)
|
||||
{
|
||||
if ((this.PropertyChanged != null))
|
||||
{
|
||||
this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Sys_Set")]
|
||||
public partial class Sys_Set : INotifyPropertyChanging, INotifyPropertyChanged
|
||||
{
|
||||
@@ -482650,7 +482819,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PersonName", DbType="NVarChar(50)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PersonName", DbType="NVarChar(50) NOT NULL", CanBeNull=false)]
|
||||
public string PersonName
|
||||
{
|
||||
get
|
||||
@@ -486408,7 +486577,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PersonName", DbType="NVarChar(50)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PersonName", DbType="NVarChar(50) NOT NULL", CanBeNull=false)]
|
||||
public string PersonName
|
||||
{
|
||||
get
|
||||
@@ -494691,7 +494860,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PersonName", DbType="NVarChar(50)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PersonName", DbType="NVarChar(50) NOT NULL", CanBeNull=false)]
|
||||
public string PersonName
|
||||
{
|
||||
get
|
||||
|
||||
Reference in New Issue
Block a user