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.
34 lines
878 B
34 lines
878 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 : F_Base
|
|
{
|
|
public F_JIS_ASA()
|
|
{
|
|
this.type = "JISASA";
|
|
this.name = "排序数据_ASA数据查询";
|
|
this.entity = new Entity_t_JIS_Seq5000();
|
|
}
|
|
|
|
|
|
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);
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
|