修改施工日志
This commit is contained in:
+213
-237
@@ -155940,6 +155940,10 @@ namespace Model
|
||||
|
||||
private string _RawPassword;
|
||||
|
||||
private string _LogWorkPostId;
|
||||
|
||||
private string _LogMachineId;
|
||||
|
||||
private EntitySet<Accident_AccidentHandle> _Accident_AccidentHandle;
|
||||
|
||||
private EntitySet<Accident_AccidentPersonRecord> _Accident_AccidentPersonRecord;
|
||||
@@ -156548,6 +156552,10 @@ namespace Model
|
||||
partial void OnHomePageTypeChanged();
|
||||
partial void OnRawPasswordChanging(string value);
|
||||
partial void OnRawPasswordChanged();
|
||||
partial void OnLogWorkPostIdChanging(string value);
|
||||
partial void OnLogWorkPostIdChanged();
|
||||
partial void OnLogMachineIdChanging(string value);
|
||||
partial void OnLogMachineIdChanged();
|
||||
#endregion
|
||||
|
||||
public Person_Persons()
|
||||
@@ -158070,6 +158078,46 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_LogWorkPostId", DbType="NVarChar(1000)")]
|
||||
public string LogWorkPostId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._LogWorkPostId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._LogWorkPostId != value))
|
||||
{
|
||||
this.OnLogWorkPostIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._LogWorkPostId = value;
|
||||
this.SendPropertyChanged("LogWorkPostId");
|
||||
this.OnLogWorkPostIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_LogMachineId", DbType="NVarChar(1000)")]
|
||||
public string LogMachineId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._LogMachineId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._LogMachineId != value))
|
||||
{
|
||||
this.OnLogMachineIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._LogMachineId = value;
|
||||
this.SendPropertyChanged("LogMachineId");
|
||||
this.OnLogMachineIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Accident_AccidentHandle_Person_Persons", Storage="_Accident_AccidentHandle", ThisKey="PersonId", OtherKey="CompileMan", DeleteRule="NO ACTION")]
|
||||
public EntitySet<Accident_AccidentHandle> Accident_AccidentHandle
|
||||
{
|
||||
@@ -296571,6 +296619,10 @@ namespace Model
|
||||
|
||||
private string _WBSCode;
|
||||
|
||||
private string _ContractId;
|
||||
|
||||
private string _MainItemCode;
|
||||
|
||||
private EntitySet<Accident_AccidentPersonRecord> _Accident_AccidentPersonRecord;
|
||||
|
||||
private EntitySet<Accident_AccidentReport> _Accident_AccidentReport;
|
||||
@@ -296663,6 +296715,10 @@ namespace Model
|
||||
partial void OnJDWeightsChanged();
|
||||
partial void OnWBSCodeChanging(string value);
|
||||
partial void OnWBSCodeChanged();
|
||||
partial void OnContractIdChanging(string value);
|
||||
partial void OnContractIdChanged();
|
||||
partial void OnMainItemCodeChanging(string value);
|
||||
partial void OnMainItemCodeChanged();
|
||||
#endregion
|
||||
|
||||
public WBS_UnitWork()
|
||||
@@ -297106,6 +297162,46 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContractId", DbType="NVarChar(50)")]
|
||||
public string ContractId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ContractId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ContractId != value))
|
||||
{
|
||||
this.OnContractIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ContractId = value;
|
||||
this.SendPropertyChanged("ContractId");
|
||||
this.OnContractIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MainItemCode", DbType="NVarChar(50)")]
|
||||
public string MainItemCode
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._MainItemCode;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._MainItemCode != value))
|
||||
{
|
||||
this.OnMainItemCodeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._MainItemCode = value;
|
||||
this.SendPropertyChanged("MainItemCode");
|
||||
this.OnMainItemCodeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Accident_AccidentPersonRecord_ProjectData_WorkArea", Storage="_Accident_AccidentPersonRecord", ThisKey="UnitWorkId", OtherKey="WorkAreaId", DeleteRule="NO ACTION")]
|
||||
public EntitySet<Accident_AccidentPersonRecord> Accident_AccidentPersonRecord
|
||||
{
|
||||
@@ -303271,6 +303367,12 @@ namespace Model
|
||||
|
||||
private string _CQMSTomorrowPlanRemark;
|
||||
|
||||
private string _FileCode;
|
||||
|
||||
private string _WorkPostId;
|
||||
|
||||
private string _MachineId;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
|
||||
private EntitySet<ZHGL_ConstructionLogMachine> _ZHGL_ConstructionLogMachine;
|
||||
@@ -303325,6 +303427,12 @@ namespace Model
|
||||
partial void OnCQMSTomorrowPlanChanged();
|
||||
partial void OnCQMSTomorrowPlanRemarkChanging(string value);
|
||||
partial void OnCQMSTomorrowPlanRemarkChanged();
|
||||
partial void OnFileCodeChanging(string value);
|
||||
partial void OnFileCodeChanged();
|
||||
partial void OnWorkPostIdChanging(string value);
|
||||
partial void OnWorkPostIdChanged();
|
||||
partial void OnMachineIdChanging(string value);
|
||||
partial void OnMachineIdChanged();
|
||||
#endregion
|
||||
|
||||
public ZHGL_ConstructionLog()
|
||||
@@ -303422,7 +303530,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContractNo", DbType="NVarChar(50)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContractNo", DbType="NVarChar(500)")]
|
||||
public string ContractNo
|
||||
{
|
||||
get
|
||||
@@ -303722,6 +303830,66 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_FileCode", DbType="NVarChar(50)")]
|
||||
public string FileCode
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._FileCode;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._FileCode != value))
|
||||
{
|
||||
this.OnFileCodeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._FileCode = value;
|
||||
this.SendPropertyChanged("FileCode");
|
||||
this.OnFileCodeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkPostId", DbType="NVarChar(1000)")]
|
||||
public string WorkPostId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._WorkPostId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._WorkPostId != value))
|
||||
{
|
||||
this.OnWorkPostIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._WorkPostId = value;
|
||||
this.SendPropertyChanged("WorkPostId");
|
||||
this.OnWorkPostIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MachineId", DbType="NVarChar(1000)")]
|
||||
public string MachineId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._MachineId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._MachineId != value))
|
||||
{
|
||||
this.OnMachineIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._MachineId = value;
|
||||
this.SendPropertyChanged("MachineId");
|
||||
this.OnMachineIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_ZHGL_ConstructionLog_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||
public Base_Project Base_Project
|
||||
{
|
||||
@@ -303914,17 +304082,9 @@ namespace Model
|
||||
|
||||
private string _UnitWorkId;
|
||||
|
||||
private System.Nullable<int> _WJNum;
|
||||
private string _MachineId;
|
||||
|
||||
private System.Nullable<int> _DCNum;
|
||||
|
||||
private System.Nullable<int> _DZJNum;
|
||||
|
||||
private System.Nullable<int> _GCNum;
|
||||
|
||||
private System.Nullable<int> _BCNum;
|
||||
|
||||
private System.Nullable<int> _BengCNum;
|
||||
private System.Nullable<int> _Num;
|
||||
|
||||
private EntityRef<ZHGL_ConstructionLog> _ZHGL_ConstructionLog;
|
||||
|
||||
@@ -303938,18 +304098,10 @@ namespace Model
|
||||
partial void OnConstructionLogIdChanged();
|
||||
partial void OnUnitWorkIdChanging(string value);
|
||||
partial void OnUnitWorkIdChanged();
|
||||
partial void OnWJNumChanging(System.Nullable<int> value);
|
||||
partial void OnWJNumChanged();
|
||||
partial void OnDCNumChanging(System.Nullable<int> value);
|
||||
partial void OnDCNumChanged();
|
||||
partial void OnDZJNumChanging(System.Nullable<int> value);
|
||||
partial void OnDZJNumChanged();
|
||||
partial void OnGCNumChanging(System.Nullable<int> value);
|
||||
partial void OnGCNumChanged();
|
||||
partial void OnBCNumChanging(System.Nullable<int> value);
|
||||
partial void OnBCNumChanged();
|
||||
partial void OnBengCNumChanging(System.Nullable<int> value);
|
||||
partial void OnBengCNumChanged();
|
||||
partial void OnMachineIdChanging(string value);
|
||||
partial void OnMachineIdChanged();
|
||||
partial void OnNumChanging(System.Nullable<int> value);
|
||||
partial void OnNumChanged();
|
||||
#endregion
|
||||
|
||||
public ZHGL_ConstructionLogMachine()
|
||||
@@ -304022,122 +304174,42 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WJNum", DbType="Int")]
|
||||
public System.Nullable<int> WJNum
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MachineId", DbType="NVarChar(50)")]
|
||||
public string MachineId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._WJNum;
|
||||
return this._MachineId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._WJNum != value))
|
||||
if ((this._MachineId != value))
|
||||
{
|
||||
this.OnWJNumChanging(value);
|
||||
this.OnMachineIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._WJNum = value;
|
||||
this.SendPropertyChanged("WJNum");
|
||||
this.OnWJNumChanged();
|
||||
this._MachineId = value;
|
||||
this.SendPropertyChanged("MachineId");
|
||||
this.OnMachineIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DCNum", DbType="Int")]
|
||||
public System.Nullable<int> DCNum
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Num", DbType="Int")]
|
||||
public System.Nullable<int> Num
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._DCNum;
|
||||
return this._Num;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._DCNum != value))
|
||||
if ((this._Num != value))
|
||||
{
|
||||
this.OnDCNumChanging(value);
|
||||
this.OnNumChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._DCNum = value;
|
||||
this.SendPropertyChanged("DCNum");
|
||||
this.OnDCNumChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DZJNum", DbType="Int")]
|
||||
public System.Nullable<int> DZJNum
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._DZJNum;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._DZJNum != value))
|
||||
{
|
||||
this.OnDZJNumChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._DZJNum = value;
|
||||
this.SendPropertyChanged("DZJNum");
|
||||
this.OnDZJNumChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_GCNum", DbType="Int")]
|
||||
public System.Nullable<int> GCNum
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._GCNum;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._GCNum != value))
|
||||
{
|
||||
this.OnGCNumChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._GCNum = value;
|
||||
this.SendPropertyChanged("GCNum");
|
||||
this.OnGCNumChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BCNum", DbType="Int")]
|
||||
public System.Nullable<int> BCNum
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._BCNum;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._BCNum != value))
|
||||
{
|
||||
this.OnBCNumChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._BCNum = value;
|
||||
this.SendPropertyChanged("BCNum");
|
||||
this.OnBCNumChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BengCNum", DbType="Int")]
|
||||
public System.Nullable<int> BengCNum
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._BengCNum;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._BengCNum != value))
|
||||
{
|
||||
this.OnBengCNumChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._BengCNum = value;
|
||||
this.SendPropertyChanged("BengCNum");
|
||||
this.OnBengCNumChanged();
|
||||
this._Num = value;
|
||||
this.SendPropertyChanged("Num");
|
||||
this.OnNumChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -304432,17 +304504,9 @@ namespace Model
|
||||
|
||||
private string _UnitWorkId;
|
||||
|
||||
private System.Nullable<int> _WGNum;
|
||||
private string _WorkPostId;
|
||||
|
||||
private System.Nullable<int> _GJGNum;
|
||||
|
||||
private System.Nullable<int> _MGNum;
|
||||
|
||||
private System.Nullable<int> _HNTGNum;
|
||||
|
||||
private System.Nullable<int> _HGNum;
|
||||
|
||||
private System.Nullable<int> _JZGNum;
|
||||
private System.Nullable<int> _Num;
|
||||
|
||||
private EntityRef<ZHGL_ConstructionLog> _ZHGL_ConstructionLog;
|
||||
|
||||
@@ -304456,18 +304520,10 @@ namespace Model
|
||||
partial void OnConstructionLogIdChanged();
|
||||
partial void OnUnitWorkIdChanging(string value);
|
||||
partial void OnUnitWorkIdChanged();
|
||||
partial void OnWGNumChanging(System.Nullable<int> value);
|
||||
partial void OnWGNumChanged();
|
||||
partial void OnGJGNumChanging(System.Nullable<int> value);
|
||||
partial void OnGJGNumChanged();
|
||||
partial void OnMGNumChanging(System.Nullable<int> value);
|
||||
partial void OnMGNumChanged();
|
||||
partial void OnHNTGNumChanging(System.Nullable<int> value);
|
||||
partial void OnHNTGNumChanged();
|
||||
partial void OnHGNumChanging(System.Nullable<int> value);
|
||||
partial void OnHGNumChanged();
|
||||
partial void OnJZGNumChanging(System.Nullable<int> value);
|
||||
partial void OnJZGNumChanged();
|
||||
partial void OnWorkPostIdChanging(string value);
|
||||
partial void OnWorkPostIdChanged();
|
||||
partial void OnNumChanging(System.Nullable<int> value);
|
||||
partial void OnNumChanged();
|
||||
#endregion
|
||||
|
||||
public ZHGL_ConstructionLogPerson()
|
||||
@@ -304540,122 +304596,42 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WGNum", DbType="Int")]
|
||||
public System.Nullable<int> WGNum
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkPostId", DbType="NVarChar(50)")]
|
||||
public string WorkPostId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._WGNum;
|
||||
return this._WorkPostId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._WGNum != value))
|
||||
if ((this._WorkPostId != value))
|
||||
{
|
||||
this.OnWGNumChanging(value);
|
||||
this.OnWorkPostIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._WGNum = value;
|
||||
this.SendPropertyChanged("WGNum");
|
||||
this.OnWGNumChanged();
|
||||
this._WorkPostId = value;
|
||||
this.SendPropertyChanged("WorkPostId");
|
||||
this.OnWorkPostIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_GJGNum", DbType="Int")]
|
||||
public System.Nullable<int> GJGNum
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Num", DbType="Int")]
|
||||
public System.Nullable<int> Num
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._GJGNum;
|
||||
return this._Num;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._GJGNum != value))
|
||||
if ((this._Num != value))
|
||||
{
|
||||
this.OnGJGNumChanging(value);
|
||||
this.OnNumChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._GJGNum = value;
|
||||
this.SendPropertyChanged("GJGNum");
|
||||
this.OnGJGNumChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MGNum", DbType="Int")]
|
||||
public System.Nullable<int> MGNum
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._MGNum;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._MGNum != value))
|
||||
{
|
||||
this.OnMGNumChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._MGNum = value;
|
||||
this.SendPropertyChanged("MGNum");
|
||||
this.OnMGNumChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HNTGNum", DbType="Int")]
|
||||
public System.Nullable<int> HNTGNum
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._HNTGNum;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._HNTGNum != value))
|
||||
{
|
||||
this.OnHNTGNumChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._HNTGNum = value;
|
||||
this.SendPropertyChanged("HNTGNum");
|
||||
this.OnHNTGNumChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HGNum", DbType="Int")]
|
||||
public System.Nullable<int> HGNum
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._HGNum;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._HGNum != value))
|
||||
{
|
||||
this.OnHGNumChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._HGNum = value;
|
||||
this.SendPropertyChanged("HGNum");
|
||||
this.OnHGNumChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_JZGNum", DbType="Int")]
|
||||
public System.Nullable<int> JZGNum
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._JZGNum;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._JZGNum != value))
|
||||
{
|
||||
this.OnJZGNumChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._JZGNum = value;
|
||||
this.SendPropertyChanged("JZGNum");
|
||||
this.OnJZGNumChanged();
|
||||
this._Num = value;
|
||||
this.SendPropertyChanged("Num");
|
||||
this.OnNumChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user