1
This commit is contained in:
@@ -114,7 +114,7 @@
|
||||
<f:Grid ID="Grid1" ShowBorder="true" ShowHeader="false" Title="热处理委托" EnableCollapse="true"
|
||||
runat="server" BoxFlex="1" DataKeyNames="HotProessTrustItemId" AllowCellEditing="true"
|
||||
AllowColumnLocking="true" EnableColumnLines="true" ClicksToEdit="2" DataIDField="HotProessTrustItemId"
|
||||
AllowSorting="true" SortField="ISO_IsoNo,JOT_JointNo" SortDirection="ASC" OnSort="Grid1_Sort"
|
||||
AllowSorting="true" SortField="ISO_IsoNo,Sort1,Sort2,Sort3,Sort4,Sort5" SortDirection="ASC" OnSort="Grid1_Sort"
|
||||
AllowPaging="true" IsDatabasePaging="true" PageSize="10" OnPageIndexChange="Grid1_PageIndexChange"
|
||||
EnableTextSelection="True" AutoScroll="true">
|
||||
<Toolbars>
|
||||
|
||||
@@ -59872,6 +59872,16 @@ namespace Model
|
||||
|
||||
private string _ProjectId;
|
||||
|
||||
private string _Sort1;
|
||||
|
||||
private System.Nullable<int> _Sort2;
|
||||
|
||||
private string _Sort3;
|
||||
|
||||
private System.Nullable<int> _Sort4;
|
||||
|
||||
private System.Nullable<int> _Sort5;
|
||||
|
||||
private string _WME_Code;
|
||||
|
||||
private string _WED_Code;
|
||||
@@ -59880,6 +59890,8 @@ namespace Model
|
||||
|
||||
private System.Nullable<bool> _IsOK;
|
||||
|
||||
private string _ISO_DesignPress;
|
||||
|
||||
public HJGL_View_CH_HotProessTrustItem()
|
||||
{
|
||||
}
|
||||
@@ -60220,6 +60232,86 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Sort1", DbType="VarChar(10)")]
|
||||
public string Sort1
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Sort1;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Sort1 != value))
|
||||
{
|
||||
this._Sort1 = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Sort2", DbType="Int")]
|
||||
public System.Nullable<int> Sort2
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Sort2;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Sort2 != value))
|
||||
{
|
||||
this._Sort2 = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Sort3", DbType="VarChar(10)")]
|
||||
public string Sort3
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Sort3;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Sort3 != value))
|
||||
{
|
||||
this._Sort3 = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Sort4", DbType="Int")]
|
||||
public System.Nullable<int> Sort4
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Sort4;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Sort4 != value))
|
||||
{
|
||||
this._Sort4 = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Sort5", DbType="Int")]
|
||||
public System.Nullable<int> Sort5
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Sort5;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Sort5 != value))
|
||||
{
|
||||
this._Sort5 = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WME_Code", DbType="VarChar(20)")]
|
||||
public string WME_Code
|
||||
{
|
||||
@@ -60283,6 +60375,22 @@ namespace Model
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ISO_DesignPress", DbType="NVarChar(13)")]
|
||||
public string ISO_DesignPress
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ISO_DesignPress;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ISO_DesignPress != value))
|
||||
{
|
||||
this._ISO_DesignPress = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.HJGL_View_CH_RepairItemRecord")]
|
||||
|
||||
Reference in New Issue
Block a user