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.
43 lines
1.1 KiB
C#
43 lines
1.1 KiB
C#
2 years ago
|
using Estsh.Core.Base;
|
||
|
using System.ComponentModel;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
|
||
|
namespace Estsh.Core.Model.ExcelModel
|
||
|
{
|
||
|
/// <summary>
|
||
|
///回冲配置
|
||
|
/// </summary>
|
||
|
[Serializable]
|
||
|
public class PDLineDefine
|
||
|
{
|
||
|
[Column("pdline_code")]
|
||
|
[DisplayName("产线代码")]
|
||
|
public string? PdlineCode { get; set; }
|
||
|
|
||
|
[Column("pdline_name")]
|
||
|
[DisplayName("产线名称")]
|
||
|
public string? PdlineName { get; set; }
|
||
|
|
||
|
[Column("pdline_desc")]
|
||
|
[DisplayName("产线描述")]
|
||
|
public string? PdlineDesc { get; set; }
|
||
|
|
||
|
[Column("src_zone_name")]
|
||
|
[DisplayName("线边库区")]
|
||
|
public string? SrcZoneName { get; set; }
|
||
|
|
||
|
//[Column("src_locate_name")]
|
||
|
//[DisplayName("线边库位")]
|
||
|
//public string? SrcLocateName { get; set; }
|
||
|
|
||
|
[Column("dest_zone_name")]
|
||
|
[DisplayName("成品库区")]
|
||
|
public string? DestZoneName { get; set; }
|
||
|
|
||
|
[Column("dest_locate_name")]
|
||
|
[DisplayName("成品库位")]
|
||
|
public string? DestLocateName { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|