106 lines
3.2 KiB
C#
106 lines
3.2 KiB
C#
|
|
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; }
|
||
|
|
}
|
||
|
|
}
|