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.

97 lines
2.3 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("g_jis_submit_log")]
[Serializable]
public class GJisSubmitLog : BaseEntity
{
[Column("ruid")]
[DisplayName(" ")]
public int Ruid { get; set; }
[Column("form_no")]
[DisplayName(" ")]
public string FormNo { get; set; }
[Column("plant_code")]
[DisplayName(" ")]
public string PlantCode { get; set; }
[Column("order_seq")]
[DisplayName(" ")]
public string OrderSeq { get; set; }
[Column("start_order_no")]
[DisplayName(" ")]
public string StartOrderNo { get; set; }
[Column("end_order_no")]
[DisplayName(" ")]
public string EndOrderNo { get; set; }
[Column("car_no")]
[DisplayName(" ")]
public string CarNo { get; set; }
[Column("vm_part_no")]
[DisplayName(" ")]
public string VmPartNo { get; set; }
[Column("vm_unit")]
[DisplayName(" ")]
public string VmUnit { get; set; }
[Column("work_center")]
[DisplayName(" ")]
public string WorkCenter { get; set; }
[Column("item_part_no")]
[DisplayName(" ")]
public string ItemPartNo { get; set; }
[Column("item_unit")]
[DisplayName(" ")]
public string ItemUnit { get; set; }
[Column("item_qty")]
[DisplayName(" ")]
public decimal ItemQty { get; set; }
[Column("par_wh")]
[DisplayName(" ")]
public string ParWh { get; set; }
[Column("item_wh")]
[DisplayName(" ")]
public string ItemWh { get; set; }
[Column("bom_date")]
[DisplayName(" ")]
public string BomDate { get; set; }
[Column("postdate")]
[DisplayName(" ")]
public string Postdate { get; set; }
[Column("posttime")]
[DisplayName(" ")]
public string Posttime { get; set; }
[Column("item_src_wh")]
[DisplayName(" ")]
public string ItemSrcWh { get; set; }
[Column("order_status")]
[DisplayName(" ")]
public int? OrderStatus { get; set; }
}
}