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.

34 lines
851 B

3 years ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Stone.Entity;
using System.Windows.Forms;
using System.Data;
using Stone.Common;
namespace Stone.WinBiz.VerifyData
{
public class F_ShipBill : Stone.WinBiz.BasicData.F_Base
{
public F_ShipBill()
{
this.type = "ShipBill";
this.name = "校验管理_发货校验";
this.entity = new Entity_t_ShipingVerification();
}
public override void GetView(DataGridView dgv)
{
base.GetView(dgv);
dgv.Columns["AsnNumber"].HeaderText = "ASN编号";
dgv.Columns["PackageNo"].HeaderText = "装箱单号";
dgv.Columns["UserName"].HeaderText = "用户名";
dgv.Columns["AddTime"].HeaderText = "校验时间";
}
}
}