20250916 特殊人工日disabled
This commit is contained in:
+172
-26
@@ -137,6 +137,9 @@ namespace Model
|
||||
partial void InsertResource_PlanDetail(Resource_PlanDetail instance);
|
||||
partial void UpdateResource_PlanDetail(Resource_PlanDetail instance);
|
||||
partial void DeleteResource_PlanDetail(Resource_PlanDetail instance);
|
||||
partial void InsertSyncDataUserLogs(SyncDataUserLogs instance);
|
||||
partial void UpdateSyncDataUserLogs(SyncDataUserLogs instance);
|
||||
partial void DeleteSyncDataUserLogs(SyncDataUserLogs instance);
|
||||
partial void InsertSys_ActualManHourMonthSet(Sys_ActualManHourMonthSet instance);
|
||||
partial void UpdateSys_ActualManHourMonthSet(Sys_ActualManHourMonthSet instance);
|
||||
partial void DeleteSys_ActualManHourMonthSet(Sys_ActualManHourMonthSet instance);
|
||||
@@ -15968,6 +15971,8 @@ namespace Model
|
||||
|
||||
private System.Nullable<int> _IsClose;
|
||||
|
||||
private string _Phase;
|
||||
|
||||
private EntityRef<Editor_EProject> _Editor_EProject;
|
||||
|
||||
private EntityRef<Resource_Plan> _Resource_Plan;
|
||||
@@ -16004,6 +16009,8 @@ namespace Model
|
||||
partial void OnAccountDisabledChanged();
|
||||
partial void OnIsCloseChanging(System.Nullable<int> value);
|
||||
partial void OnIsCloseChanged();
|
||||
partial void OnPhaseChanging(string value);
|
||||
partial void OnPhaseChanged();
|
||||
#endregion
|
||||
|
||||
public ManHours_Plan()
|
||||
@@ -16267,6 +16274,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Phase", DbType="NVarChar(50)")]
|
||||
public string Phase
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Phase;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Phase != value))
|
||||
{
|
||||
this.OnPhaseChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Phase = value;
|
||||
this.SendPropertyChanged("Phase");
|
||||
this.OnPhaseChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_ManHours_Plan_Editor_EProject", Storage="_Editor_EProject", ThisKey="EProjectId", OtherKey="EProjectId", IsForeignKey=true)]
|
||||
public Editor_EProject Editor_EProject
|
||||
{
|
||||
@@ -18834,28 +18861,79 @@ namespace Model
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.SyncDataUserLogs")]
|
||||
public partial class SyncDataUserLogs
|
||||
public partial class SyncDataUserLogs : INotifyPropertyChanging, INotifyPropertyChanged
|
||||
{
|
||||
|
||||
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
|
||||
|
||||
private int _Id;
|
||||
|
||||
private string _BatchNo;
|
||||
|
||||
private System.Nullable<System.DateTime> _CreatedTime;
|
||||
|
||||
private System.Nullable<int> _DataType;
|
||||
private int _DataType;
|
||||
|
||||
private string _DepatId;
|
||||
|
||||
private string _UserId;
|
||||
|
||||
private System.Nullable<System.DateTime> _CreatedTime;
|
||||
|
||||
private System.Nullable<bool> _IsSuccess;
|
||||
|
||||
private string _Remark;
|
||||
|
||||
private string _Josn;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
partial void OnCreated();
|
||||
partial void OnIdChanging(int value);
|
||||
partial void OnIdChanged();
|
||||
partial void OnBatchNoChanging(string value);
|
||||
partial void OnBatchNoChanged();
|
||||
partial void OnDataTypeChanging(int value);
|
||||
partial void OnDataTypeChanged();
|
||||
partial void OnDepatIdChanging(string value);
|
||||
partial void OnDepatIdChanged();
|
||||
partial void OnUserIdChanging(string value);
|
||||
partial void OnUserIdChanged();
|
||||
partial void OnCreatedTimeChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnCreatedTimeChanged();
|
||||
partial void OnIsSuccessChanging(System.Nullable<bool> value);
|
||||
partial void OnIsSuccessChanged();
|
||||
partial void OnRemarkChanging(string value);
|
||||
partial void OnRemarkChanged();
|
||||
partial void OnJosnChanging(string value);
|
||||
partial void OnJosnChanged();
|
||||
#endregion
|
||||
|
||||
public SyncDataUserLogs()
|
||||
{
|
||||
OnCreated();
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BatchNo", DbType="NVarChar(50)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="id", Storage="_Id", AutoSync=AutoSync.OnInsert, DbType="Int NOT NULL IDENTITY", IsPrimaryKey=true, IsDbGenerated=true)]
|
||||
public int 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(Name="batchNo", Storage="_BatchNo", DbType="NVarChar(50) NOT NULL", CanBeNull=false)]
|
||||
public string BatchNo
|
||||
{
|
||||
get
|
||||
@@ -18866,29 +18944,17 @@ namespace Model
|
||||
{
|
||||
if ((this._BatchNo != value))
|
||||
{
|
||||
this.OnBatchNoChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._BatchNo = value;
|
||||
this.SendPropertyChanged("BatchNo");
|
||||
this.OnBatchNoChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CreatedTime", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> CreatedTime
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CreatedTime;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CreatedTime != value))
|
||||
{
|
||||
this._CreatedTime = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DataType", DbType="Int")]
|
||||
public System.Nullable<int> DataType
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="dataType", Storage="_DataType", DbType="Int NOT NULL")]
|
||||
public int DataType
|
||||
{
|
||||
get
|
||||
{
|
||||
@@ -18898,12 +18964,16 @@ namespace Model
|
||||
{
|
||||
if ((this._DataType != value))
|
||||
{
|
||||
this.OnDataTypeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._DataType = value;
|
||||
this.SendPropertyChanged("DataType");
|
||||
this.OnDataTypeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DepatId", DbType="NVarChar(50)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="depatId", Storage="_DepatId", DbType="NVarChar(50)")]
|
||||
public string DepatId
|
||||
{
|
||||
get
|
||||
@@ -18914,12 +18984,16 @@ namespace Model
|
||||
{
|
||||
if ((this._DepatId != value))
|
||||
{
|
||||
this.OnDepatIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._DepatId = value;
|
||||
this.SendPropertyChanged("DepatId");
|
||||
this.OnDepatIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UserId", DbType="NVarChar(50)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="userId", Storage="_UserId", DbType="NVarChar(50)")]
|
||||
public string UserId
|
||||
{
|
||||
get
|
||||
@@ -18930,7 +19004,31 @@ namespace Model
|
||||
{
|
||||
if ((this._UserId != value))
|
||||
{
|
||||
this.OnUserIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._UserId = value;
|
||||
this.SendPropertyChanged("UserId");
|
||||
this.OnUserIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="createdTime", Storage="_CreatedTime", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> CreatedTime
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CreatedTime;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CreatedTime != value))
|
||||
{
|
||||
this.OnCreatedTimeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._CreatedTime = value;
|
||||
this.SendPropertyChanged("CreatedTime");
|
||||
this.OnCreatedTimeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -18946,12 +19044,16 @@ namespace Model
|
||||
{
|
||||
if ((this._IsSuccess != value))
|
||||
{
|
||||
this.OnIsSuccessChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._IsSuccess = value;
|
||||
this.SendPropertyChanged("IsSuccess");
|
||||
this.OnIsSuccessChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="NVarChar(500)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
|
||||
public string Remark
|
||||
{
|
||||
get
|
||||
@@ -18962,10 +19064,54 @@ namespace Model
|
||||
{
|
||||
if ((this._Remark != value))
|
||||
{
|
||||
this.OnRemarkChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Remark = value;
|
||||
this.SendPropertyChanged("Remark");
|
||||
this.OnRemarkChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Josn", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
|
||||
public string Josn
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Josn;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Josn != value))
|
||||
{
|
||||
this.OnJosnChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Josn = value;
|
||||
this.SendPropertyChanged("Josn");
|
||||
this.OnJosnChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
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_ActualManHourMonthSet")]
|
||||
|
||||
Reference in New Issue
Block a user