You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
90 lines
2.4 KiB
C#
90 lines
2.4 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Model.ExcelModel
|
|
{
|
|
/// <summary>
|
|
///采购日程单汇总
|
|
/// </summary>
|
|
[Serializable]
|
|
public class PurchaseScheduleSingle
|
|
{
|
|
[Column("order_no")]
|
|
[DisplayName("日程单据号")]
|
|
public string OrderNo { get; set; }
|
|
|
|
[Column("weekly_order_no")]
|
|
[DisplayName("周单据号")]
|
|
public string WeeklyOrderNo { get; set; }
|
|
|
|
[Column("type_name")]
|
|
[DisplayName("项目代码")]
|
|
public string TypeName { get; set; }
|
|
|
|
[Column("buy_no")]
|
|
[DisplayName("采购单号")]
|
|
public string BuyNo { get; set; }
|
|
|
|
[Column("vendor_name")]
|
|
[DisplayName("供应商")]
|
|
public string VendorName { get; set; }
|
|
|
|
[Column("se_date")]
|
|
[DisplayName("预交日期")]
|
|
public string SeDate { get; set; }
|
|
|
|
[Column("part_no")]
|
|
[DisplayName("零件号")]
|
|
public string PartNo { get; set; }
|
|
|
|
[Column("lot_no")]
|
|
[DisplayName("批号")]
|
|
public string LotNo { get; set; }
|
|
|
|
[Column("qty")]
|
|
[DisplayName("总数")]
|
|
public string Qty { get; set; }
|
|
|
|
[Column("snp_qty")]
|
|
[DisplayName("标准包装数")]
|
|
public string SnpQty { get; set; }
|
|
|
|
[Column("carton_qty")]
|
|
[DisplayName("总箱数")]
|
|
public string CartonQty { get; set; }
|
|
|
|
[Column("rec_qty")]
|
|
[DisplayName("已收总数")]
|
|
public string RecQty { get; set; }
|
|
|
|
[Column("rec_carton_qty")]
|
|
[DisplayName("已收总箱数")]
|
|
public string RecCartonQty { get; set; }
|
|
|
|
[Column("diff_qty")]
|
|
[DisplayName("差异总数量")]
|
|
public string DiffQty { get; set; }
|
|
|
|
[Column("day_status")]
|
|
[DisplayName("状态")]
|
|
public string DayStatus { get; set; }
|
|
|
|
[Column("day_type")]
|
|
[DisplayName("类别")]
|
|
public string DayType { get; set; }
|
|
|
|
[Column("is_closed")]
|
|
[DisplayName("是否关闭")]
|
|
public string IsClosed { get; set; }
|
|
|
|
[Column("factory_name")]
|
|
[DisplayName("厂区信息")]
|
|
public string FactoryName { get; set; }
|
|
|
|
[Column("create_time")]
|
|
[DisplayName("日期")]
|
|
public string CreateTime { get; set; }
|
|
}
|
|
}
|