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.

77 lines
1.8 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("g_sn_count")]
[Serializable]
public class GSnCount : BaseEntity
{
[Column("workorder_no")]
[DisplayName(" ")]
public int? WorkorderNo { get; set; }
[Column("model_id")]
[DisplayName(" ")]
public int? ModelId { get; set; }
[Column("part_id")]
[DisplayName(" ")]
public int PartId { get; set; }
[Column("pdline_id")]
[DisplayName(" ")]
public int PdlineId { get; set; }
[Column("stage_id")]
[DisplayName(" ")]
public int StageId { get; set; }
[Column("process_id")]
[DisplayName(" ")]
public int ProcessId { get; set; }
[Column("shift_id")]
[DisplayName(" ")]
public int? ShiftId { get; set; }
[Column("work_date")]
[DisplayName(" ")]
public string WorkDate { get; set; }
[Column("work_hour")]
[DisplayName(" ")]
public int? WorkHour { get; set; }
[Column("pass_qty")]
[DisplayName(" ")]
public decimal? PassQty { get; set; }
[Column("fail_qty")]
[DisplayName(" ")]
public decimal? FailQty { get; set; }
[Column("repass_qty")]
[DisplayName(" ")]
public decimal? RepassQty { get; set; }
[Column("refail_qty")]
[DisplayName(" ")]
public decimal? RefailQty { get; set; }
[Column("output_qty")]
[DisplayName(" ")]
public decimal? OutputQty { get; set; }
[Column("ruid")]
[DisplayName(" ")]
public int Ruid { get; set; }
}
}