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.
30 lines
802 B
30 lines
802 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;
|
|
|
|
namespace Stone.WinBiz.JISData
|
|
{
|
|
public class F_JIS_Tacho : F_Base
|
|
{
|
|
public F_JIS_Tacho()
|
|
{
|
|
this.type = "Tacho";
|
|
this.name = "排序数据_Tacho数据查询";
|
|
this.entity = new Entity_t_JIS_Tacho();
|
|
}
|
|
|
|
public override void GetView(System.Windows.Forms.DataGridView dgv)
|
|
{
|
|
dgv.DataSource = dsMain.Tables[0];
|
|
dgv.Columns["ID"].Visible = false; //隐藏ID列
|
|
MyGridViewStyle.GetGridViewState(dgv, "基础资料" + type);
|
|
MyGridViewStyle.SetDataGridMenuCommon(dgv);
|
|
|
|
}
|
|
}
|
|
}
|
|
|