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.

51 lines
1.2 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// 成品发运JIS
/// </summary>
[Table("MES_WMS_JIS_SHIPPING")]
[Serializable]
public class MesWmsJisShipping : BaseEntity
{
[Column("pdline_code")]
[DisplayName(" ")]
public string PdlineCode { get; set; }
[Column("part_no")]
[DisplayName(" ")]
public string PartNo { get; set; }
[Column("serial_number")]
[DisplayName(" ")]
public string SerialNumber { get; set; }
[Column("qty")]
[DisplayName(" ")]
public decimal? Qty { get; set; }
[Column("customer_code")]
[DisplayName(" ")]
public string CustomerCode { get; set; }
[Column("syn_flg")]
[DisplayName(" ")]
public int SynFlg { get; set; }
[Column("syn_time")]
[DisplayName(" ")]
public string SynTime { get; set; }
[Column("err_msg")]
[DisplayName(" ")]
public string ErrMsg { get; set; }
[Column("order_no")]
[DisplayName(" ")]
public string OrderNo { get; set; }
}
}