施工人力

This commit is contained in:
geh
2025-12-01 10:24:34 +08:00
parent da23e72a7f
commit 07b7d8426a
11 changed files with 561 additions and 212 deletions
+179
View File
@@ -8892,6 +8892,14 @@ namespace Model
}
}
public System.Data.Linq.Table<SitePerson_Checking_Statistics> SitePerson_Checking_Statistics
{
get
{
return this.GetTable<SitePerson_Checking_Statistics>();
}
}
public System.Data.Linq.Table<SitePerson_DayReport> SitePerson_DayReport
{
get
@@ -350663,6 +350671,177 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.SitePerson_Checking_Statistics")]
public partial class SitePerson_Checking_Statistics
{
private string _ProjectId;
private string _UnitId;
private string _UnitName;
private string _WorkAreaId;
private string _WorkAreaName;
private string _WorkPostId;
private string _WorkPostName;
private System.Nullable<System.DateTime> _IntoOutTime;
private System.Nullable<int> _Num;
public SitePerson_Checking_Statistics()
{
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectId", DbType="NVarChar(50)")]
public string ProjectId
{
get
{
return this._ProjectId;
}
set
{
if ((this._ProjectId != value))
{
this._ProjectId = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitId", DbType="NVarChar(50)")]
public string UnitId
{
get
{
return this._UnitId;
}
set
{
if ((this._UnitId != value))
{
this._UnitId = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitName", DbType="NVarChar(200)")]
public string UnitName
{
get
{
return this._UnitName;
}
set
{
if ((this._UnitName != value))
{
this._UnitName = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkAreaId", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
public string WorkAreaId
{
get
{
return this._WorkAreaId;
}
set
{
if ((this._WorkAreaId != value))
{
this._WorkAreaId = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkAreaName", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
public string WorkAreaName
{
get
{
return this._WorkAreaName;
}
set
{
if ((this._WorkAreaName != value))
{
this._WorkAreaName = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkPostId", DbType="NVarChar(50)")]
public string WorkPostId
{
get
{
return this._WorkPostId;
}
set
{
if ((this._WorkPostId != value))
{
this._WorkPostId = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkPostName", DbType="NVarChar(100)")]
public string WorkPostName
{
get
{
return this._WorkPostName;
}
set
{
if ((this._WorkPostName != value))
{
this._WorkPostName = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IntoOutTime", DbType="DateTime")]
public System.Nullable<System.DateTime> IntoOutTime
{
get
{
return this._IntoOutTime;
}
set
{
if ((this._IntoOutTime != value))
{
this._IntoOutTime = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="num", Storage="_Num", DbType="Int")]
public System.Nullable<int> Num
{
get
{
return this._Num;
}
set
{
if ((this._Num != value))
{
this._Num = value;
}
}
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.SitePerson_DayReport")]
public partial class SitePerson_DayReport : INotifyPropertyChanging, INotifyPropertyChanged
{