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.
33 lines
809 B
33 lines
809 B
3 years ago
|
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";
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|