| | |
| | | .LeftJoin<SysPackag>((a,b)=> a.PackagNo == b.PackagNo) |
| | | .LeftJoin<SysUserInfor>((a,b,c)=> a.CreateUser == c.Id) |
| | | .LeftJoin<SysUserInfor>((a,b,c,d)=> a.UpdateUser == d.Id) |
| | | .Select((a, b, c, d) => new ExportNoticeDetailDto() |
| | | .LeftJoin<BllExportNotice>((a, b, c, d, e) => a.SONo == e.SONo) |
| | | .Select((a, b, c, d, e) => new ExportNoticeDetailDto() |
| | | { |
| | | Id = a.Id, |
| | | Status = a.Status, |
| | | Origin = notice.Origin, |
| | | SONo = a.SONo, |
| | | Type = e.Type, |
| | | StatusZ = e.Status, |
| | | SkuNo = a.SkuNo, |
| | | SkuName = a.SkuName, |
| | | Standard = a.Standard, |