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.
84 lines
2.0 KiB
C#
84 lines
2.0 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("mes_jis_shipping")]
|
|
[Serializable]
|
|
public class MesJisShipping : BaseEntity
|
|
{
|
|
[Column("ruid")]
|
|
[DisplayName(" ")]
|
|
public long Ruid { get; set; }
|
|
|
|
[Column("pdline_code")]
|
|
[DisplayName(" ")]
|
|
public string PdlineCode { get; set; }
|
|
|
|
[Column("part_no")]
|
|
[DisplayName(" ")]
|
|
public string PartNo { get; set; }
|
|
|
|
[Column("part_spec")]
|
|
[DisplayName(" ")]
|
|
public string PartSpec { get; set; }
|
|
|
|
[Column("serial_number")]
|
|
[DisplayName(" ")]
|
|
public string SerialNumber { get; set; }
|
|
|
|
[Column("qty")]
|
|
[DisplayName(" ")]
|
|
public decimal? Qty { get; set; }
|
|
|
|
[Column("ship_status")]
|
|
[DisplayName(" ")]
|
|
public int? ShipStatus { get; set; }
|
|
|
|
[Column("erp_warehouse")]
|
|
[DisplayName(" ")]
|
|
public string ErpWarehouse { get; set; }
|
|
|
|
[Column("erp_status")]
|
|
[DisplayName(" ")]
|
|
public int? ErpStatus { get; set; }
|
|
|
|
[Column("customer_id")]
|
|
[DisplayName(" ")]
|
|
public int? CustomerId { get; set; }
|
|
|
|
[Column("customer_code")]
|
|
[DisplayName(" ")]
|
|
public string CustomerCode { get; set; }
|
|
|
|
[Column("err_msg")]
|
|
[DisplayName(" ")]
|
|
public string ErrMsg { get; set; }
|
|
|
|
[Column("order_no")]
|
|
[DisplayName(" ")]
|
|
public string OrderNo { get; set; }
|
|
|
|
#region 扩展字段
|
|
|
|
[Column("ship_status_desc")]
|
|
[DisplayName(" ")]
|
|
public string ShipStatusDesc { get; set; }
|
|
|
|
[Column("part_spec2")]
|
|
[DisplayName(" ")]
|
|
public string PartSpec2 { get; set; }
|
|
|
|
[Column("storage_time")]
|
|
[DisplayName(" ")]
|
|
public string StorageTime { get; set; }
|
|
|
|
#endregion
|
|
|
|
}
|
|
}
|