This commit is contained in:
2025-09-01 09:37:56 +08:00
44 changed files with 1787 additions and 1459 deletions
@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class PackagingManagePrintOutput
{
public string PipelineComponentId { get; set; }
public string PipelineComponentCode { get; set; }
public DateTime? PlanStartDate { get; set; }
public string UnitWorkName { get; set; }
public string num { get; set; }
public string CU { get; set; }
public string FlowingSection { get; set; }
}
}
+24
View File
@@ -103845,6 +103845,8 @@ namespace Model
private string _Remark;
private System.Nullable<System.DateTime> _ReceiveDate;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -103869,6 +103871,8 @@ namespace Model
partial void OnContactPhoneChanged();
partial void OnRemarkChanging(string value);
partial void OnRemarkChanged();
partial void OnReceiveDateChanging(System.Nullable<System.DateTime> value);
partial void OnReceiveDateChanged();
#endregion
public HJGL_TrainNumberManage()
@@ -104076,6 +104080,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ReceiveDate", DbType="DateTime")]
public System.Nullable<System.DateTime> ReceiveDate
{
get
{
return this._ReceiveDate;
}
set
{
if ((this._ReceiveDate != value))
{
this.OnReceiveDateChanging(value);
this.SendPropertyChanging();
this._ReceiveDate = value;
this.SendPropertyChanged("ReceiveDate");
this.OnReceiveDateChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
+1
View File
@@ -235,6 +235,7 @@
<Compile Include="HJGL\3DParameter.cs" />
<Compile Include="HJGL\MaterialStockItem.cs" />
<Compile Include="APIItem\HJGL\PackagingManageItem.cs" />
<Compile Include="HJGL\PackagingManagePrintOutput.cs" />
<Compile Include="HJGL\PipelineComponentPrintDto.cs" />
<Compile Include="HJGL\PipeLineIdCodeItem.cs" />
<Compile Include="HJGL\PipelinePrefabricatedComponentsItem.cs" />