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.
 
 
 
 

36 lines
795 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data;
using Stone.Entity;
using Gm_WMS.DataAccess.DataService;
namespace Stone.WinBiz.BasicData
{
public class F_User : F_Base
{
public F_User()
{
this.type = "User";
this.name = "基础资料_用户";
this.entity = new Entity_t_Sys_User();
}
public override void GetView(DataGridView dgv)
{
base.GetView(dgv);
dgv.Columns["Name"].HeaderText = "用户名";
dgv.Columns["Memo"].HeaderText = "备注";
dgv.Columns["Enabled"].HeaderText = "状态";
dgv.Columns["Password"].Visible = false;
}
}
}