|
|
|
@ -71,7 +71,8 @@ namespace Myshipping.Application.Job
|
|
|
|
|
{
|
|
|
|
|
x.Id,
|
|
|
|
|
x.MBLNO,
|
|
|
|
|
x.ParentId
|
|
|
|
|
x.ParentId,
|
|
|
|
|
x.VERSION
|
|
|
|
|
})
|
|
|
|
|
.ToList();
|
|
|
|
|
|
|
|
|
@ -82,7 +83,8 @@ namespace Myshipping.Application.Job
|
|
|
|
|
.Select(x => new HCDataCompareSendSubModel
|
|
|
|
|
{
|
|
|
|
|
Id = x.Id,
|
|
|
|
|
MBLNO = x.MBLNO
|
|
|
|
|
MBLNO = x.MBLNO,
|
|
|
|
|
VERSION = x.VERSION
|
|
|
|
|
})
|
|
|
|
|
.ToList();
|
|
|
|
|
}
|
|
|
|
@ -98,7 +100,8 @@ namespace Myshipping.Application.Job
|
|
|
|
|
.Select(x => new HCDataCompareSendModel
|
|
|
|
|
{
|
|
|
|
|
Id = x.Id,
|
|
|
|
|
MBLNO = x.MBLNO
|
|
|
|
|
MBLNO = x.MBLNO,
|
|
|
|
|
VERSION = x.VERSION
|
|
|
|
|
})
|
|
|
|
|
.ToList();
|
|
|
|
|
|
|
|
|
@ -171,6 +174,8 @@ namespace Myshipping.Application.Job
|
|
|
|
|
|
|
|
|
|
public string MBLNO { get; set; }
|
|
|
|
|
|
|
|
|
|
public string VERSION { get; set; }
|
|
|
|
|
|
|
|
|
|
public List<HCDataCompareSendSubModel> Sub { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -179,5 +184,7 @@ namespace Myshipping.Application.Job
|
|
|
|
|
public long Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public string MBLNO { get; set; }
|
|
|
|
|
|
|
|
|
|
public string VERSION { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|