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.

69 lines
1.8 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("wms_pulling_group")]
[Serializable]
public class WmsPullingGroup : BaseEntity
{
[Column("ruid")]
[DisplayName(" ")]
public int Ruid { get; set; }
[Column("group_code")]
[DisplayName(" ")]
public string GroupCode { get; set; }
[Column("group_name")]
[DisplayName(" ")]
public string GroupName { get; set; }
[Column("pulling_type")]
[DisplayName(" ")]
public int PullingType { get; set; }
[Column("pdline_name")]
[DisplayName(" ")]
public string PdlineName { get; set; }
[Column("pdline_code")]
[DisplayName(" ")]
public string PdlineCode { get; set; }
[Column("kitting_qty")]
[DisplayName(" ")]
public decimal? KittingQty { get; set; }
[Column("is_auto_print")]
[DisplayName(" ")]
public int? IsAutoPrint { get; set; }
[Column("print_copies")]
[DisplayName(" ")]
public int? PrintCopies { get; set; }
[Column("printer")]
[DisplayName(" ")]
public string Printer { get; set; }
[Column("print_template")]
[DisplayName(" ")]
public string PrintTemplate { get; set; }
[Column("cumulativeValue")]
[DisplayName("累加值")]
public string CumulativeValue { get; set; }
[Column("triggerValue")]
[DisplayName("触发值")]
public string TriggerValue { get; set; }
[Column("pullValue")]
[DisplayName("拉动值")]
public string PullValue { get; set; }
}
}