2023-06-13

This commit is contained in:
2023-06-13 15:51:41 +08:00
parent 549713aec6
commit 3c887b46d1
5 changed files with 214 additions and 16 deletions
+19 -1
View File
@@ -232282,7 +232282,7 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ErrMessage", DbType="NVarChar(2000)")]
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ErrMessage", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
public string ErrMessage
{
get
@@ -267302,6 +267302,8 @@ namespace Model
private string _PipeRemark;
private string _FlowingSection;
private string _WeldJointId;
private string _WeldJointCode;
@@ -267992,6 +267994,22 @@ namespace Model
}
}
[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="_WeldJointId", DbType="NVarChar(50) NOT NULL", CanBeNull=false)]
public string WeldJointId
{