You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
892 B
33 lines
892 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Stone.WinBiz.BasicData;
|
|
using Stone.Entity;
|
|
using System.Windows.Forms;
|
|
using Stone.Common;
|
|
using System.Data;
|
|
|
|
namespace Stone.WinBiz.JISData
|
|
{
|
|
public class F_JIS_ASA_All : F_Base
|
|
{
|
|
public F_JIS_ASA_All()
|
|
{
|
|
this.type = "JISASAALL";
|
|
this.name = "排序数据_ASA全部数据";
|
|
this.entity = new Entity_t_JIS_Seq5000_All();
|
|
}
|
|
|
|
public override void GetView(DataGridView dgv)
|
|
{
|
|
dgv.DataSource = dsMain.Tables[0];
|
|
dgv.Columns["ID"].Visible = false; //隐藏ID列
|
|
dgv.Columns["SequenceNumber"].HeaderText = "EINSTEIN Seq";
|
|
MyGridViewStyle.GetGridViewState(dgv, "基础资料" + type);
|
|
MyGridViewStyle.SetDataGridMenuCommon(dgv);
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
|