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.
35 lines
893 B
35 lines
893 B
3 years ago
|
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_DEL : F_Base
|
||
|
{
|
||
|
public F_JIS_ASA_DEL()
|
||
|
{
|
||
|
this.type = "JISASADEL";
|
||
|
this.name = "排序数据_ASA删除数据";
|
||
|
this.entity = new Entity_t_JIS_Seq5000_Del();
|
||
|
|
||
|
}
|
||
|
|
||
|
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);
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|