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.
54 lines
1.4 KiB
C#
54 lines
1.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 PullGroup
|
|
{
|
|
[Column("group_code")]
|
|
[DisplayName("拉动组代码")]
|
|
public string? GroupCode { get; set; }
|
|
|
|
[Column("group_name")]
|
|
[DisplayName("拉动组名称")]
|
|
public string? GroupName { get; set; }
|
|
|
|
[Column("pulling_type")]
|
|
[DisplayName("拉动组类型")]
|
|
public string? PullingType { get; set; }
|
|
|
|
[Column("pdline_code")]
|
|
[DisplayName("产线代码")]
|
|
public string? PdlineCode { get; set; }
|
|
|
|
[Column("kitting_qty")]
|
|
[DisplayName("数量")]
|
|
public decimal? KittingQty { get; set; }
|
|
|
|
[Column("triggerValue")]
|
|
[DisplayName("触发值")]
|
|
public string TriggerValue { get; set; }
|
|
|
|
[Column("pullValue")]
|
|
[DisplayName("拉动值")]
|
|
public string PullValue { get; set; }
|
|
|
|
[Column("part_no")]
|
|
[DisplayName("零件号")]
|
|
public string? PartNo { get; set; }
|
|
|
|
[Column("part_spec")]
|
|
[DisplayName("零件简码")]
|
|
public string? PartSpec { get; set; }
|
|
|
|
[Column("pull_qty")]
|
|
[DisplayName("拉动组数量")]
|
|
public string? PullQty { get; set; }
|
|
}
|
|
}
|