|
|
@ -36,16 +36,20 @@ public class HBPO_SE_EDI :FullAuditedAggregateRoot<Guid> |
|
|
|
[Display(Name = "订货时间")] |
|
|
|
public DateTime BeginDate { get; set; } |
|
|
|
|
|
|
|
[Display(Name = "工厂")] |
|
|
|
public string Site { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public string Extend1 { set; get; } |
|
|
|
|
|
|
|
public string Extend2 { set; get; } |
|
|
|
public string Extend3 { set; get; } |
|
|
|
public string Extend4 { set; get; } |
|
|
|
|
|
|
|
|
|
|
|
public HBPO_SE_EDI(Guid guid, string keyCode, int version, string lU, string pN, string seqNumber, string assemblyCode, string injectionCode, decimal qty, DateTime beginDate) |
|
|
|
public HBPO_SE_EDI(Guid guid ,string keyCode, int version, string lU, string pN, string seqNumber, string assemblyCode, string injectionCode, decimal qty, DateTime beginDate, string site, string extend1, string extend2, string extend3, string extend4) |
|
|
|
{ |
|
|
|
Id=guid; |
|
|
|
Id = guid; |
|
|
|
KeyCode = keyCode; |
|
|
|
Version = version; |
|
|
|
LU = lU; |
|
|
@ -55,8 +59,27 @@ public class HBPO_SE_EDI :FullAuditedAggregateRoot<Guid> |
|
|
|
InjectionCode = injectionCode; |
|
|
|
Qty = qty; |
|
|
|
BeginDate = beginDate; |
|
|
|
Site = site; |
|
|
|
Extend1 = extend1; |
|
|
|
Extend2 = extend2; |
|
|
|
Extend3 = extend3; |
|
|
|
Extend4 = extend4; |
|
|
|
} |
|
|
|
|
|
|
|
//public HBPO_SE_EDI(Guid guid, string keyCode, int version, string lU, string pN, string seqNumber, string assemblyCode, string injectionCode, decimal qty, DateTime beginDate)
|
|
|
|
//{
|
|
|
|
// Id=guid;
|
|
|
|
// KeyCode = keyCode;
|
|
|
|
// Version = version;
|
|
|
|
// LU = lU;
|
|
|
|
// PN = pN;
|
|
|
|
// SeqNumber = seqNumber;
|
|
|
|
// AssemblyCode = assemblyCode;
|
|
|
|
// InjectionCode = injectionCode;
|
|
|
|
// Qty = qty;
|
|
|
|
// BeginDate = beginDate;
|
|
|
|
//}
|
|
|
|
|
|
|
|
public HBPO_SE_EDI() |
|
|
|
{ |
|
|
|
} |
|
|
|