20251030 焊口综合信息增加报表打印

This commit is contained in:
2025-10-30 14:06:40 +08:00
parent 345c376343
commit abaf104093
9 changed files with 1102 additions and 1043 deletions
+180
View File
@@ -438326,6 +438326,26 @@ namespace Model
private string _WeldTypeCode;
private string _JOT_Location;
private System.Nullable<decimal> _JOT_PrepareTemp;
private System.Nullable<decimal> _JOT_LastTemp;
private string _JOT_Electricity;
private string _JOT_Voltage;
private System.Nullable<decimal> _JOT_CellTemp;
private string _DetectionTypeId;
private string _DetectionRateId;
private string _JOT_WeldSilk;
private string _JOT_WeldMat;
public V_JOINTVIEW()
{
}
@@ -439097,6 +439117,166 @@ namespace Model
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_JOT_Location", DbType="NVarChar(50)")]
public string JOT_Location
{
get
{
return this._JOT_Location;
}
set
{
if ((this._JOT_Location != value))
{
this._JOT_Location = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_JOT_PrepareTemp", DbType="Decimal(18,4)")]
public System.Nullable<decimal> JOT_PrepareTemp
{
get
{
return this._JOT_PrepareTemp;
}
set
{
if ((this._JOT_PrepareTemp != value))
{
this._JOT_PrepareTemp = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_JOT_LastTemp", DbType="Decimal(18,4)")]
public System.Nullable<decimal> JOT_LastTemp
{
get
{
return this._JOT_LastTemp;
}
set
{
if ((this._JOT_LastTemp != value))
{
this._JOT_LastTemp = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_JOT_Electricity", DbType="VarChar(40)")]
public string JOT_Electricity
{
get
{
return this._JOT_Electricity;
}
set
{
if ((this._JOT_Electricity != value))
{
this._JOT_Electricity = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_JOT_Voltage", DbType="VarChar(40)")]
public string JOT_Voltage
{
get
{
return this._JOT_Voltage;
}
set
{
if ((this._JOT_Voltage != value))
{
this._JOT_Voltage = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_JOT_CellTemp", DbType="Decimal(18,4)")]
public System.Nullable<decimal> JOT_CellTemp
{
get
{
return this._JOT_CellTemp;
}
set
{
if ((this._JOT_CellTemp != value))
{
this._JOT_CellTemp = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DetectionTypeId", DbType="NVarChar(50)")]
public string DetectionTypeId
{
get
{
return this._DetectionTypeId;
}
set
{
if ((this._DetectionTypeId != value))
{
this._DetectionTypeId = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DetectionRateId", DbType="NVarChar(50)")]
public string DetectionRateId
{
get
{
return this._DetectionRateId;
}
set
{
if ((this._DetectionRateId != value))
{
this._DetectionRateId = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_JOT_WeldSilk", DbType="NVarChar(50)")]
public string JOT_WeldSilk
{
get
{
return this._JOT_WeldSilk;
}
set
{
if ((this._JOT_WeldSilk != value))
{
this._JOT_WeldSilk = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_JOT_WeldMat", DbType="NVarChar(50)")]
public string JOT_WeldMat
{
get
{
return this._JOT_WeldMat;
}
set
{
if ((this._JOT_WeldMat != value))
{
this._JOT_WeldMat = value;
}
}
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.V_SeDin_MonthReport3")]