This commit is contained in:
geh
2026-07-20 12:08:16 +08:00
parent e7354bed93
commit 4fd1a440f7
26 changed files with 2648 additions and 368 deletions
+511
View File
@@ -833,6 +833,9 @@ namespace Model
partial void InsertDataGovernance_MetricData(DataGovernance_MetricData instance);
partial void UpdateDataGovernance_MetricData(DataGovernance_MetricData instance);
partial void DeleteDataGovernance_MetricData(DataGovernance_MetricData instance);
partial void InsertDataGovernance_PreProjectApply(DataGovernance_PreProjectApply instance);
partial void UpdateDataGovernance_PreProjectApply(DataGovernance_PreProjectApply instance);
partial void DeleteDataGovernance_PreProjectApply(DataGovernance_PreProjectApply instance);
partial void InsertDataIdMove(DataIdMove instance);
partial void UpdateDataIdMove(DataIdMove instance);
partial void DeleteDataIdMove(DataIdMove instance);
@@ -5199,6 +5202,14 @@ namespace Model
}
}
public System.Data.Linq.Table<DataGovernance_PreProjectApply> DataGovernance_PreProjectApply
{
get
{
return this.GetTable<DataGovernance_PreProjectApply>();
}
}
public System.Data.Linq.Table<DataIdMove> DataIdMove
{
get
@@ -141471,6 +141482,380 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.DataGovernance_PreProjectApply")]
public partial class DataGovernance_PreProjectApply : INotifyPropertyChanging, INotifyPropertyChanged
{
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
private string _Id;
private string _UnitId;
private string _UnitName;
private string _ProjectName;
private string _ApplyType;
private string _ApplyUserId;
private string _ApplyUserName;
private string _ApplyDescription;
private System.DateTime _ApplyDate;
private string _ApproverUserId;
private string _ApproverUserName;
private string _ApprovalDescription;
private System.Nullable<System.DateTime> _ApprovalDate;
private int _State;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
partial void OnCreated();
partial void OnIdChanging(string value);
partial void OnIdChanged();
partial void OnUnitIdChanging(string value);
partial void OnUnitIdChanged();
partial void OnUnitNameChanging(string value);
partial void OnUnitNameChanged();
partial void OnProjectNameChanging(string value);
partial void OnProjectNameChanged();
partial void OnApplyTypeChanging(string value);
partial void OnApplyTypeChanged();
partial void OnApplyUserIdChanging(string value);
partial void OnApplyUserIdChanged();
partial void OnApplyUserNameChanging(string value);
partial void OnApplyUserNameChanged();
partial void OnApplyDescriptionChanging(string value);
partial void OnApplyDescriptionChanged();
partial void OnApplyDateChanging(System.DateTime value);
partial void OnApplyDateChanged();
partial void OnApproverUserIdChanging(string value);
partial void OnApproverUserIdChanged();
partial void OnApproverUserNameChanging(string value);
partial void OnApproverUserNameChanged();
partial void OnApprovalDescriptionChanging(string value);
partial void OnApprovalDescriptionChanged();
partial void OnApprovalDateChanging(System.Nullable<System.DateTime> value);
partial void OnApprovalDateChanged();
partial void OnStateChanging(int value);
partial void OnStateChanged();
#endregion
public DataGovernance_PreProjectApply()
{
OnCreated();
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Id", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
public string Id
{
get
{
return this._Id;
}
set
{
if ((this._Id != value))
{
this.OnIdChanging(value);
this.SendPropertyChanging();
this._Id = value;
this.SendPropertyChanged("Id");
this.OnIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitId", DbType="NVarChar(200) NOT NULL", CanBeNull=false)]
public string UnitId
{
get
{
return this._UnitId;
}
set
{
if ((this._UnitId != value))
{
this.OnUnitIdChanging(value);
this.SendPropertyChanging();
this._UnitId = value;
this.SendPropertyChanged("UnitId");
this.OnUnitIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitName", DbType="NVarChar(200) NOT NULL", CanBeNull=false)]
public string UnitName
{
get
{
return this._UnitName;
}
set
{
if ((this._UnitName != value))
{
this.OnUnitNameChanging(value);
this.SendPropertyChanging();
this._UnitName = value;
this.SendPropertyChanged("UnitName");
this.OnUnitNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectName", DbType="NVarChar(200) NOT NULL", CanBeNull=false)]
public string ProjectName
{
get
{
return this._ProjectName;
}
set
{
if ((this._ProjectName != value))
{
this.OnProjectNameChanging(value);
this.SendPropertyChanging();
this._ProjectName = value;
this.SendPropertyChanged("ProjectName");
this.OnProjectNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ApplyType", DbType="NVarChar(50) NOT NULL", CanBeNull=false)]
public string ApplyType
{
get
{
return this._ApplyType;
}
set
{
if ((this._ApplyType != value))
{
this.OnApplyTypeChanging(value);
this.SendPropertyChanging();
this._ApplyType = value;
this.SendPropertyChanged("ApplyType");
this.OnApplyTypeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ApplyUserId", DbType="NVarChar(50) NOT NULL", CanBeNull=false)]
public string ApplyUserId
{
get
{
return this._ApplyUserId;
}
set
{
if ((this._ApplyUserId != value))
{
this.OnApplyUserIdChanging(value);
this.SendPropertyChanging();
this._ApplyUserId = value;
this.SendPropertyChanged("ApplyUserId");
this.OnApplyUserIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ApplyUserName", DbType="NVarChar(200) NOT NULL", CanBeNull=false)]
public string ApplyUserName
{
get
{
return this._ApplyUserName;
}
set
{
if ((this._ApplyUserName != value))
{
this.OnApplyUserNameChanging(value);
this.SendPropertyChanging();
this._ApplyUserName = value;
this.SendPropertyChanged("ApplyUserName");
this.OnApplyUserNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ApplyDescription", DbType="NVarChar(200)")]
public string ApplyDescription
{
get
{
return this._ApplyDescription;
}
set
{
if ((this._ApplyDescription != value))
{
this.OnApplyDescriptionChanging(value);
this.SendPropertyChanging();
this._ApplyDescription = value;
this.SendPropertyChanged("ApplyDescription");
this.OnApplyDescriptionChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ApplyDate", DbType="DateTime NOT NULL")]
public System.DateTime ApplyDate
{
get
{
return this._ApplyDate;
}
set
{
if ((this._ApplyDate != value))
{
this.OnApplyDateChanging(value);
this.SendPropertyChanging();
this._ApplyDate = value;
this.SendPropertyChanged("ApplyDate");
this.OnApplyDateChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ApproverUserId", DbType="NVarChar(50)")]
public string ApproverUserId
{
get
{
return this._ApproverUserId;
}
set
{
if ((this._ApproverUserId != value))
{
this.OnApproverUserIdChanging(value);
this.SendPropertyChanging();
this._ApproverUserId = value;
this.SendPropertyChanged("ApproverUserId");
this.OnApproverUserIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ApproverUserName", DbType="NVarChar(200)")]
public string ApproverUserName
{
get
{
return this._ApproverUserName;
}
set
{
if ((this._ApproverUserName != value))
{
this.OnApproverUserNameChanging(value);
this.SendPropertyChanging();
this._ApproverUserName = value;
this.SendPropertyChanged("ApproverUserName");
this.OnApproverUserNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ApprovalDescription", DbType="NVarChar(200)")]
public string ApprovalDescription
{
get
{
return this._ApprovalDescription;
}
set
{
if ((this._ApprovalDescription != value))
{
this.OnApprovalDescriptionChanging(value);
this.SendPropertyChanging();
this._ApprovalDescription = value;
this.SendPropertyChanged("ApprovalDescription");
this.OnApprovalDescriptionChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ApprovalDate", DbType="DateTime")]
public System.Nullable<System.DateTime> ApprovalDate
{
get
{
return this._ApprovalDate;
}
set
{
if ((this._ApprovalDate != value))
{
this.OnApprovalDateChanging(value);
this.SendPropertyChanging();
this._ApprovalDate = value;
this.SendPropertyChanged("ApprovalDate");
this.OnApprovalDateChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_State", DbType="Int NOT NULL")]
public int State
{
get
{
return this._State;
}
set
{
if ((this._State != value))
{
this.OnStateChanging(value);
this.SendPropertyChanging();
this._State = value;
this.SendPropertyChanged("State");
this.OnStateChanged();
}
}
}
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.DataIdMove")]
public partial class DataIdMove : INotifyPropertyChanging, INotifyPropertyChanged
{
@@ -328258,6 +328643,12 @@ namespace Model
private System.Nullable<decimal> _DailyAvg;
private System.Nullable<int> _BuYongBuShiYong;
private System.Nullable<int> _WeiShangXian;
private System.Nullable<int> _ShenQingGuanBi;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -328304,6 +328695,12 @@ namespace Model
partial void OnThisMonActiveUserNumChanged();
partial void OnDailyAvgChanging(System.Nullable<decimal> value);
partial void OnDailyAvgChanged();
partial void OnBuYongBuShiYongChanging(System.Nullable<int> value);
partial void OnBuYongBuShiYongChanged();
partial void OnWeiShangXianChanging(System.Nullable<int> value);
partial void OnWeiShangXianChanged();
partial void OnShenQingGuanBiChanging(System.Nullable<int> value);
partial void OnShenQingGuanBiChanged();
#endregion
public Project_MasterDataAnalysis()
@@ -328731,6 +329128,66 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BuYongBuShiYong", DbType="Int")]
public System.Nullable<int> BuYongBuShiYong
{
get
{
return this._BuYongBuShiYong;
}
set
{
if ((this._BuYongBuShiYong != value))
{
this.OnBuYongBuShiYongChanging(value);
this.SendPropertyChanging();
this._BuYongBuShiYong = value;
this.SendPropertyChanged("BuYongBuShiYong");
this.OnBuYongBuShiYongChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WeiShangXian", DbType="Int")]
public System.Nullable<int> WeiShangXian
{
get
{
return this._WeiShangXian;
}
set
{
if ((this._WeiShangXian != value))
{
this.OnWeiShangXianChanging(value);
this.SendPropertyChanging();
this._WeiShangXian = value;
this.SendPropertyChanged("WeiShangXian");
this.OnWeiShangXianChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ShenQingGuanBi", DbType="Int")]
public System.Nullable<int> ShenQingGuanBi
{
get
{
return this._ShenQingGuanBi;
}
set
{
if ((this._ShenQingGuanBi != value))
{
this.OnShenQingGuanBiChanging(value);
this.SendPropertyChanging();
this._ShenQingGuanBi = value;
this.SendPropertyChanged("ShenQingGuanBi");
this.OnShenQingGuanBiChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
@@ -506696,6 +507153,12 @@ namespace Model
private System.Nullable<decimal> _DailyAvg;
private System.Nullable<int> _BuYongBuShiYong;
private System.Nullable<int> _WeiShangXian;
private System.Nullable<int> _ShenQingGuanBi;
public View_Project_MasterDataAnalysis()
{
}
@@ -507035,6 +507498,54 @@ namespace Model
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BuYongBuShiYong", DbType="Int")]
public System.Nullable<int> BuYongBuShiYong
{
get
{
return this._BuYongBuShiYong;
}
set
{
if ((this._BuYongBuShiYong != value))
{
this._BuYongBuShiYong = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WeiShangXian", DbType="Int")]
public System.Nullable<int> WeiShangXian
{
get
{
return this._WeiShangXian;
}
set
{
if ((this._WeiShangXian != value))
{
this._WeiShangXian = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ShenQingGuanBi", DbType="Int")]
public System.Nullable<int> ShenQingGuanBi
{
get
{
return this._ShenQingGuanBi;
}
set
{
if ((this._ShenQingGuanBi != value))
{
this._ShenQingGuanBi = value;
}
}
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.View_ProjectAccident_AccidentAnalysis")]