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.

44 lines
1.1 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Model.ExcelModel
{
/// <summary>
/// 入库单管理导入
/// </summary>
[Serializable]
public class MovementInstockManage
{
[Column("order_type_desc")]
[DisplayName("单据类型")]
public string OrderTypeDesc { get; set; }
[Column("plan_date")]
[DisplayName("计划日期")]
public string? PlanDate { get; set; }
[Column("vendor_code")]
[DisplayName("供应商代码")]
public string VendorCode { get; set; }
[Column("warehouse_name")]
[DisplayName("仓库名称")]
public string WarehouseName { get; set; }
[NotMapped]
[Column("zone_name")]
[DisplayName("库区名称")]
public string ZoneName { get; set; }
[NotMapped]
[Column("part_no")]
[DisplayName("零件号")]
public string PartNo { get; set; }
[Column("qty")]
[DisplayName("数量")]
public string Qty { get; set; }
}
}