修改作业票
This commit is contained in:
@@ -216095,6 +216095,10 @@ namespace Model
|
||||
|
||||
private string _SignatureUrl;
|
||||
|
||||
private string _WorkLeaderName;
|
||||
|
||||
private string _FireWatchManName;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
|
||||
private EntityRef<Base_Unit> _Base_Unit;
|
||||
@@ -216165,6 +216169,10 @@ namespace Model
|
||||
partial void OnWorkAreaIdChanged();
|
||||
partial void OnSignatureUrlChanging(string value);
|
||||
partial void OnSignatureUrlChanged();
|
||||
partial void OnWorkLeaderNameChanging(string value);
|
||||
partial void OnWorkLeaderNameChanged();
|
||||
partial void OnFireWatchManNameChanging(string value);
|
||||
partial void OnFireWatchManNameChanged();
|
||||
#endregion
|
||||
|
||||
public License_RadialWork()
|
||||
@@ -216727,6 +216735,46 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkLeaderName", DbType="NVarChar(50)")]
|
||||
public string WorkLeaderName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._WorkLeaderName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._WorkLeaderName != value))
|
||||
{
|
||||
this.OnWorkLeaderNameChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._WorkLeaderName = value;
|
||||
this.SendPropertyChanged("WorkLeaderName");
|
||||
this.OnWorkLeaderNameChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_FireWatchManName", DbType="NVarChar(50)")]
|
||||
public string FireWatchManName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._FireWatchManName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._FireWatchManName != value))
|
||||
{
|
||||
this.OnFireWatchManNameChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._FireWatchManName = value;
|
||||
this.SendPropertyChanged("FireWatchManName");
|
||||
this.OnFireWatchManNameChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_License_RadialWork_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||
public Base_Project Base_Project
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user