You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
1.0 KiB

1 year ago
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace ChangKeTec.Wms.Models
{
public class EDI_ASN_DETAIL
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int UID { get; set; }
public string ASNNO { get; set; }//ASN编号,每年不重复,最长8位
public string ASNDATE { get; set; }//ASN日期
public string SLCODE { get; set; }//供应商编码
public string BYCODE { get; set; }//收货方编码
public string GATENO { get; set; }//到货门编码
public string GATENM { get; set; }//到货门名称
public string DOCKNO { get; set; }//到货口编码
public string SLMONO { get; set; }//供应商内部物料编码
public int MQTTY { get; set; }//物料数量
public string BYMPO { get; set; }//买方订单编码
public string BYMNO { get; set; }//买方物料编码 同供应商物料编码
public bool isRead { get; set; }
}
}