首页修改

This commit is contained in:
2023-07-26 10:12:33 +08:00
parent f0b0eca670
commit 8f97e47b42
14 changed files with 795 additions and 612 deletions
+95
View File
@@ -7573,6 +7573,14 @@ namespace Model
}
}
public System.Data.Linq.Table<Sheet1_> Sheet1_
{
get
{
return this.GetTable<Sheet1_>();
}
}
public System.Data.Linq.Table<SitePerson_AskForLeave> SitePerson_AskForLeave
{
get
@@ -24813,6 +24821,8 @@ namespace Model
private string _ProjectAttribute;
private System.Nullable<int> _ConstructionNum;
private EntitySet<Accident_AccidentHandle> _Accident_AccidentHandle;
private EntitySet<Accident_AccidentPersonRecord> _Accident_AccidentPersonRecord;
@@ -25467,6 +25477,8 @@ namespace Model
partial void OnIsDeleteChanged();
partial void OnProjectAttributeChanging(string value);
partial void OnProjectAttributeChanged();
partial void OnConstructionNumChanging(System.Nullable<int> value);
partial void OnConstructionNumChanged();
#endregion
public Base_Project()
@@ -26491,6 +26503,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ConstructionNum", DbType="Int")]
public System.Nullable<int> ConstructionNum
{
get
{
return this._ConstructionNum;
}
set
{
if ((this._ConstructionNum != value))
{
this.OnConstructionNumChanging(value);
this.SendPropertyChanging();
this._ConstructionNum = value;
this.SendPropertyChanged("ConstructionNum");
this.OnConstructionNumChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Accident_AccidentHandle_Base_Project", Storage="_Accident_AccidentHandle", ThisKey="ProjectId", OtherKey="ProjectId", DeleteRule="NO ACTION")]
public EntitySet<Accident_AccidentHandle> Accident_AccidentHandle
{
@@ -312937,6 +312969,69 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Sheet1$")]
public partial class Sheet1_
{
private string _序号;
private string _岗位;
private string _总包;
public Sheet1_()
{
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_序号", DbType="NVarChar(255)")]
public string
{
get
{
return this._序号;
}
set
{
if ((this._序号 != value))
{
this._序号 = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_岗位", DbType="NVarChar(255)")]
public string
{
get
{
return this._岗位;
}
set
{
if ((this._岗位 != value))
{
this._岗位 = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_总包", DbType="NVarChar(255)")]
public string
{
get
{
return this._总包;
}
set
{
if ((this._总包 != value))
{
this._总包 = value;
}
}
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.SitePerson_AskForLeave")]
public partial class SitePerson_AskForLeave : INotifyPropertyChanging, INotifyPropertyChanged
{