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
832 B
C#
35 lines
832 B
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Model.ExcelModel
|
|
{
|
|
/// <summary>
|
|
///库位管理
|
|
/// </summary>
|
|
[Serializable]
|
|
public class LocatePart
|
|
{
|
|
[Column("locate_name")]
|
|
[DisplayName("库位代码")]
|
|
public string? LocateName { get; set; }
|
|
|
|
[Column("part_no")]
|
|
[DisplayName("零件号")]
|
|
public string? PartNo { get; set; }
|
|
|
|
[Column("max_qty")]
|
|
[DisplayName("最大数量")]
|
|
public decimal? MaxQty { get; set; }
|
|
|
|
[Column("min_qty")]
|
|
[DisplayName("最小数量")]
|
|
public decimal? MinQty { get; set; }
|
|
|
|
[Column("safety_qty")]
|
|
[DisplayName("安全库存")]
|
|
public decimal? SafetyQty { get; set; }
|
|
|
|
}
|
|
}
|