This commit is contained in:
2025-06-04 23:15:08 +08:00
35 changed files with 857 additions and 228 deletions
+29
View File
@@ -0,0 +1,29 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
/// <summary>
/// pu推送安全费用模型
/// </summary>
public class PuPayCraftAmountInput
{
public string projectId { get; set; }
public string contractNo { get; set; }
public string amountHSE { get; set; }
public PuPayCraftAmountFileInput[] files { get; set; }
}
/// <summary>
/// pu推送安全费用文件模型
/// </summary>
public class PuPayCraftAmountFileInput
{
public string name { get; set; }
public string content { get; set; }
public string thisamount { get; set; }
public string date { get; set; }
}
}
+161
View File
@@ -6857,6 +6857,14 @@ namespace Model
}
}
public System.Data.Linq.Table<View_HJGL_ProductionSchedulingPlanStatistics> View_HJGL_ProductionSchedulingPlanStatistics
{
get
{
return this.GetTable<View_HJGL_ProductionSchedulingPlanStatistics>();
}
}
public System.Data.Linq.Table<View_HJGL_WeldingTask> View_HJGL_WeldingTask
{
get
@@ -287569,6 +287577,159 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.View_HJGL_ProductionSchedulingPlanStatistics")]
public partial class View_HJGL_ProductionSchedulingPlanStatistics
{
private string _UnitWorkId;
private string _UnitWorkCode;
private string _UnitWorkName;
private string _ProjectId;
private string _FlowingSection;
private string _Material;
private string _Caliber;
private decimal _Dia;
public View_HJGL_ProductionSchedulingPlanStatistics()
{
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitWorkId", DbType="NVarChar(50) NOT NULL", CanBeNull=false)]
public string UnitWorkId
{
get
{
return this._UnitWorkId;
}
set
{
if ((this._UnitWorkId != value))
{
this._UnitWorkId = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitWorkCode", DbType="NVarChar(10)")]
public string UnitWorkCode
{
get
{
return this._UnitWorkCode;
}
set
{
if ((this._UnitWorkCode != value))
{
this._UnitWorkCode = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitWorkName", DbType="NVarChar(30)")]
public string UnitWorkName
{
get
{
return this._UnitWorkName;
}
set
{
if ((this._UnitWorkName != value))
{
this._UnitWorkName = value;
}
}
}
[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="_FlowingSection", DbType="NVarChar(200)")]
public string FlowingSection
{
get
{
return this._FlowingSection;
}
set
{
if ((this._FlowingSection != value))
{
this._FlowingSection = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Material", DbType="VarChar(8)")]
public string Material
{
get
{
return this._Material;
}
set
{
if ((this._Material != value))
{
this._Material = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Caliber", DbType="VarChar(5) NOT NULL", CanBeNull=false)]
public string Caliber
{
get
{
return this._Caliber;
}
set
{
if ((this._Caliber != value))
{
this._Caliber = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Dia", DbType="Decimal(38,3) NOT NULL")]
public decimal Dia
{
get
{
return this._Dia;
}
set
{
if ((this._Dia != value))
{
this._Dia = value;
}
}
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.View_HJGL_WeldingTask")]
public partial class View_HJGL_WeldingTask
{
+1
View File
@@ -236,6 +236,7 @@
<Compile Include="HJGL\sp_index_HJGLItem.cs" />
<Compile Include="HSSE\DigDataHSEDataCollectItem.cs" />
<Compile Include="HSSE\PageDataPersonInOutItem.cs" />
<Compile Include="HSSE\PuPayCraftAmountInput.cs" />
<Compile Include="HSSE\WorkPostStatisticItem.cs" />
<Compile Include="HSSE\HSSE_HazardTemplate.cs" />
<Compile Include="Model.cs" />