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.
37 lines
1.1 KiB
37 lines
1.1 KiB
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_Location : F_Base
|
|
{
|
|
public F_Location()
|
|
{
|
|
this.type = "Location";
|
|
this.name = "基础资料_卸货点";
|
|
this.entity = new Entity_t_Location();
|
|
}
|
|
|
|
public override void GetView(DataGridView dgv)
|
|
{
|
|
base.GetView(dgv);
|
|
|
|
dgv.Columns["Code"].HeaderText = "代码";
|
|
dgv.Columns["Address1"].HeaderText = "地址1";
|
|
dgv.Columns["Address2"].HeaderText = "地址2";
|
|
dgv.Columns["Address3"].HeaderText = "地址3";
|
|
dgv.Columns["LocCode1"].HeaderText = "卸货点代码1";
|
|
//// dgv.Columns["LocCode2"].HeaderText = "卸货点代码2";
|
|
//// dgv.Columns["LocCode3"].HeaderText = "卸货点代码3";
|
|
//// dgv.Columns["LocCode4"].HeaderText = "卸货点代码4";
|
|
dgv.Columns["State"].HeaderText = "状态";
|
|
}
|
|
|
|
}
|
|
}
|
|
|