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.

93 lines
2.2 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("g_wo_picklist_order")]
[Serializable]
public class GWoPicklistOrder : BaseEntity
{
[Column("workorder")]
[DisplayName(" ")]
public string Workorder { get; set; }
[Column("parent_part_id")]
[DisplayName(" ")]
public int? ParentPartId { get; set; }
[Column("pdline_id")]
[DisplayName(" ")]
public int PdlineId { get; set; }
[Column("part_id")]
[DisplayName(" ")]
public int PartId { get; set; }
[Column("locate_id")]
[DisplayName(" ")]
public int LocateId { get; set; }
[Column("request_qty")]
[DisplayName(" ")]
public decimal RequestQty { get; set; }
[Column("issue_qty")]
[DisplayName(" ")]
public decimal IssueQty { get; set; }
[Column("inpdline_qty")]
[DisplayName(" ")]
public decimal InpdlineQty { get; set; }
[Column("to_wo")]
[DisplayName(" ")]
public decimal ToWo { get; set; }
[Column("scrap_qty")]
[DisplayName(" ")]
public decimal ScrapQty { get; set; }
[Column("ab_issue_qty")]
[DisplayName(" ")]
public decimal AbIssueQty { get; set; }
[Column("ab_return_qty")]
[DisplayName(" ")]
public decimal AbReturnQty { get; set; }
[Column("version")]
[DisplayName(" ")]
public string Version { get; set; }
[Column("status")]
[DisplayName(" ")]
public string Status { get; set; }
[Column("type")]
[DisplayName(" ")]
public string Type { get; set; }
[Column("ruid")]
[DisplayName(" ")]
public int Ruid { get; set; }
[Column("shift_id")]
[DisplayName(" ")]
public int ShiftId { get; set; }
[Column("parent_part_no")]
[DisplayName(" ")]
public string ParentPartNo { get; set; }
[Column("workorder_order_no")]
[DisplayName(" ")]
public string WorkorderOrderNo { get; set; }
}
}