20250619 修改报表
This commit is contained in:
+127
-195
@@ -137,9 +137,6 @@ 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);
|
||||
@@ -18837,79 +18834,28 @@ namespace Model
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.SyncDataUserLogs")]
|
||||
public partial class SyncDataUserLogs : INotifyPropertyChanging, INotifyPropertyChanged
|
||||
public partial class SyncDataUserLogs
|
||||
{
|
||||
|
||||
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
|
||||
|
||||
private int _Id;
|
||||
|
||||
private string _BatchNo;
|
||||
|
||||
private int _DataType;
|
||||
private System.Nullable<System.DateTime> _CreatedTime;
|
||||
|
||||
private System.Nullable<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(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)]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BatchNo", DbType="NVarChar(50)")]
|
||||
public string BatchNo
|
||||
{
|
||||
get
|
||||
@@ -18920,76 +18866,12 @@ 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(Name="dataType", Storage="_DataType", DbType="Int NOT NULL")]
|
||||
public int DataType
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._DataType;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._DataType != value))
|
||||
{
|
||||
this.OnDataTypeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._DataType = value;
|
||||
this.SendPropertyChanged("DataType");
|
||||
this.OnDataTypeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="depatId", Storage="_DepatId", DbType="NVarChar(50)")]
|
||||
public string DepatId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._DepatId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._DepatId != value))
|
||||
{
|
||||
this.OnDepatIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._DepatId = value;
|
||||
this.SendPropertyChanged("DepatId");
|
||||
this.OnDepatIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="userId", Storage="_UserId", DbType="NVarChar(50)")]
|
||||
public string UserId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._UserId;
|
||||
}
|
||||
set
|
||||
{
|
||||
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")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CreatedTime", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> CreatedTime
|
||||
{
|
||||
get
|
||||
@@ -19000,11 +18882,55 @@ namespace Model
|
||||
{
|
||||
if ((this._CreatedTime != value))
|
||||
{
|
||||
this.OnCreatedTimeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._CreatedTime = value;
|
||||
this.SendPropertyChanged("CreatedTime");
|
||||
this.OnCreatedTimeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DataType", DbType="Int")]
|
||||
public System.Nullable<int> DataType
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._DataType;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._DataType != value))
|
||||
{
|
||||
this._DataType = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DepatId", DbType="NVarChar(50)")]
|
||||
public string DepatId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._DepatId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._DepatId != value))
|
||||
{
|
||||
this._DepatId = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UserId", DbType="NVarChar(50)")]
|
||||
public string UserId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._UserId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._UserId != value))
|
||||
{
|
||||
this._UserId = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -19020,16 +18946,12 @@ 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(MAX)", UpdateCheck=UpdateCheck.Never)]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="NVarChar(500)")]
|
||||
public string Remark
|
||||
{
|
||||
get
|
||||
@@ -19040,54 +18962,10 @@ 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")]
|
||||
@@ -28577,8 +28455,6 @@ namespace Model
|
||||
|
||||
private string _CM_CM_RevisedEnd;
|
||||
|
||||
private string _CM_KickOffMetting;
|
||||
|
||||
private System.Nullable<System.DateTime> _ProjectControl_Revised_MC_Date;
|
||||
|
||||
private string _ProjectControl_Remarks;
|
||||
@@ -28605,6 +28481,14 @@ namespace Model
|
||||
|
||||
private string _Job_Hold;
|
||||
|
||||
private string _CM_KickOffMetting;
|
||||
|
||||
private string _PM_Remarks_Engineering;
|
||||
|
||||
private string _PM_Remarks_Procurement;
|
||||
|
||||
private string _CM_Remarks_Construction;
|
||||
|
||||
public View_ProjectListReport()
|
||||
{
|
||||
}
|
||||
@@ -29633,22 +29517,6 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CM_KickOffMetting", DbType="VarChar(10)")]
|
||||
public string CM_KickOffMetting
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CM_KickOffMetting;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CM_KickOffMetting != value))
|
||||
{
|
||||
this._CM_KickOffMetting = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectControl_Revised_MC_Date", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> ProjectControl_Revised_MC_Date
|
||||
{
|
||||
@@ -29856,6 +29724,70 @@ namespace Model
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CM_KickOffMetting", DbType="VarChar(10)")]
|
||||
public string CM_KickOffMetting
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CM_KickOffMetting;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CM_KickOffMetting != value))
|
||||
{
|
||||
this._CM_KickOffMetting = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PM_Remarks_Engineering", DbType="NVarChar(2000)")]
|
||||
public string PM_Remarks_Engineering
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._PM_Remarks_Engineering;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._PM_Remarks_Engineering != value))
|
||||
{
|
||||
this._PM_Remarks_Engineering = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PM_Remarks_Procurement", DbType="NVarChar(2000)")]
|
||||
public string PM_Remarks_Procurement
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._PM_Remarks_Procurement;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._PM_Remarks_Procurement != value))
|
||||
{
|
||||
this._PM_Remarks_Procurement = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CM_Remarks_Construction", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
|
||||
public string CM_Remarks_Construction
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CM_Remarks_Construction;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CM_Remarks_Construction != value))
|
||||
{
|
||||
this._CM_Remarks_Construction = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.View_Punch")]
|
||||
|
||||
Reference in New Issue
Block a user