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#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("wms_pulling_group_mes")]
[Serializable]
public class WmsPullingGroupMes : BaseEntity
{
[Column("ruid")]
[DisplayName(" ")]
public int Ruid { get; set; }
[Column("pdline_name")]
[DisplayName(" ")]
public string PdlineName { get; set; }
[Column("pdline_code")]
[DisplayName(" ")]
public string PdlineCode { get; set; }
[Column("cumulative_value")]
[DisplayName("累加值")]
public int CumulativeValue { get; set; }
[Column("trigger_value")]
[DisplayName("触发值")]
public int TriggerValue { get; set; }
[Column("pull_value")]
[DisplayName("拉动值")]
public int PullValue { get; set; }
[Column("max_pull_value")]
[DisplayName("最大铺线数")]
public int MaxPullValue { get; set; }
}
}