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.

35 lines
838 B
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Model.ExcelModel
{
/// <summary>
///推荐入库管理
/// </summary>
[Serializable]
public class ZonePart
{
[Column("zone_name")]
[DisplayName("库区代码")]
public string? ZoneName { get; set; }
[Column("vendor_code")]
[DisplayName("供应商代码")]
public string? VendorCode { get; set; }
[Column("part_no")]
[DisplayName("零件号")]
public string? PartNo { get; set; }
[Column("part_spec")]
[DisplayName("零件简码")]
public string? PartSpec { get; set; }
[Column("priority")]
[DisplayName("优先级")]
public string? Priority { get; set; }
}
}