提交代码

This commit is contained in:
2023-12-01 16:24:41 +08:00
parent 32c14198db
commit b696a63438
6 changed files with 287 additions and 4 deletions
+36
View File
@@ -272185,6 +272185,8 @@ namespace Model
private System.Nullable<int> _JointCount;
private System.Nullable<int> _FinishJointCount;
private string _UnitName;
private string _UnitWorkCode;
@@ -272763,6 +272765,22 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_FinishJointCount", DbType="Int")]
public System.Nullable<int> FinishJointCount
{
get
{
return this._FinishJointCount;
}
set
{
if ((this._FinishJointCount != value))
{
this._FinishJointCount = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitName", DbType="NVarChar(200)")]
public string UnitName
{
@@ -273719,6 +273737,8 @@ namespace Model
private string _IsWelding;
private string _IsWeldOK;
private string _IsHotProessStr;
private string _BackingWelderName;
@@ -275341,6 +275361,22 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsWeldOK", DbType="VarChar(6) NOT NULL", CanBeNull=false)]
public string IsWeldOK
{
get
{
return this._IsWeldOK;
}
set
{
if ((this._IsWeldOK != value))
{
this._IsWeldOK = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsHotProessStr", DbType="VarChar(2) NOT NULL", CanBeNull=false)]
public string IsHotProessStr
{