1
This commit is contained in:
@@ -1,105 +0,0 @@
|
||||
using System;
|
||||
using System.Data.Linq;
|
||||
using System.Data.Linq.Mapping;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
public partial class SGGLDB
|
||||
{
|
||||
public Table<HJGL_PreWeldCuttingCheckMaterial> HJGL_PreWeldCuttingCheckMaterial
|
||||
{
|
||||
get { return GetTable<HJGL_PreWeldCuttingCheckMaterial>(); }
|
||||
}
|
||||
|
||||
public Table<HJGL_WeldAppearanceCheck> HJGL_WeldAppearanceCheck
|
||||
{
|
||||
get { return GetTable<HJGL_WeldAppearanceCheck>(); }
|
||||
}
|
||||
}
|
||||
|
||||
public partial class HJGL_PreWeldCuttingCheck
|
||||
{
|
||||
[Column(DbType = "Int NOT NULL")]
|
||||
public int ReviewState { get; set; }
|
||||
|
||||
[Column(DbType = "NVarChar(50)")]
|
||||
public string SpecialReviewerId { get; set; }
|
||||
|
||||
[Column(DbType = "NVarChar(50)")]
|
||||
public string ReviewerId { get; set; }
|
||||
|
||||
[Column(DbType = "DateTime")]
|
||||
public DateTime? ReviewTime { get; set; }
|
||||
}
|
||||
|
||||
[Table(Name = "dbo.HJGL_PreWeldCuttingCheckMaterial")]
|
||||
public class HJGL_PreWeldCuttingCheckMaterial
|
||||
{
|
||||
[Column(IsPrimaryKey = true, CanBeNull = false, DbType = "NVarChar(50) NOT NULL")]
|
||||
public string CuttingCheckMaterialId { get; set; }
|
||||
|
||||
[Column(CanBeNull = false, DbType = "NVarChar(50) NOT NULL")]
|
||||
public string CuttingCheckId { get; set; }
|
||||
|
||||
[Column(CanBeNull = false, DbType = "NVarChar(50) NOT NULL")]
|
||||
public string PipeLineMatId { get; set; }
|
||||
|
||||
[Column(DbType = "Int NOT NULL")]
|
||||
public int MaterialSide { get; set; }
|
||||
|
||||
[Column(DbType = "NVarChar(100)")]
|
||||
public string OriginalMainCode { get; set; }
|
||||
|
||||
[Column(DbType = "NVarChar(100)")]
|
||||
public string ReportedMainCode { get; set; }
|
||||
|
||||
[Column(DbType = "Bit NOT NULL")]
|
||||
public bool IsBatchChanged { get; set; }
|
||||
}
|
||||
|
||||
[Table(Name = "dbo.HJGL_WeldAppearanceCheck")]
|
||||
public class HJGL_WeldAppearanceCheck
|
||||
{
|
||||
[Column(IsPrimaryKey = true, CanBeNull = false, DbType = "NVarChar(50) NOT NULL")]
|
||||
public string AppearanceCheckId { get; set; }
|
||||
|
||||
[Column(CanBeNull = false, DbType = "NVarChar(50) NOT NULL")]
|
||||
public string ProjectId { get; set; }
|
||||
|
||||
[Column(CanBeNull = false, DbType = "NVarChar(50) NOT NULL")]
|
||||
public string WeldJointId { get; set; }
|
||||
|
||||
[Column(DbType = "Bit NOT NULL")]
|
||||
public bool IsQualified { get; set; }
|
||||
|
||||
[Column(CanBeNull = false, DbType = "NVarChar(50) NOT NULL")]
|
||||
public string CheckPerson { get; set; }
|
||||
|
||||
[Column(DbType = "DateTime NOT NULL")]
|
||||
public DateTime CheckTime { get; set; }
|
||||
|
||||
[Column(DbType = "NVarChar(500)")]
|
||||
public string Remark { get; set; }
|
||||
|
||||
[Column(DbType = "NVarChar(50)")]
|
||||
public string CreateUser { get; set; }
|
||||
|
||||
[Column(DbType = "DateTime NOT NULL")]
|
||||
public DateTime CreateTime { get; set; }
|
||||
|
||||
[Column(DbType = "NVarChar(50)")]
|
||||
public string ModifyUser { get; set; }
|
||||
|
||||
[Column(DbType = "DateTime")]
|
||||
public DateTime? ModifyTime { get; set; }
|
||||
}
|
||||
|
||||
public partial class View_HJGL_WeldJoint
|
||||
{
|
||||
[Column(DbType = "Bit")]
|
||||
public bool? WeldAppearanceIsQualified { get; set; }
|
||||
|
||||
[Column(DbType = "NVarChar(10) NOT NULL", CanBeNull = false)]
|
||||
public string WeldAppearanceResult { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -281,7 +281,6 @@
|
||||
<Compile Include="HSSE\PuPayCraftAmountInput.cs" />
|
||||
<Compile Include="HSSE\WorkPostStatisticItem.cs" />
|
||||
<Compile Include="HSSE\HSSE_HazardTemplate.cs" />
|
||||
<Compile Include="HJGL\HJGLQualityExtensions.cs" />
|
||||
<Compile Include="Model.cs" />
|
||||
<Compile Include="ModelProc.cs" />
|
||||
<Compile Include="Num.cs" />
|
||||
@@ -341,4 +340,4 @@
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
</Project>
|
||||
</Project>
|
||||
Reference in New Issue
Block a user