| | |
| | | public string? ReleaseNo { get; set; } |
| | | |
| | | public decimal? SearchIndex { get; set; } |
| | | |
| | | public string? Sjxb { get; set; } |
| | | |
| | | public string? XsDdh { get; set; } |
| | | } |
| | |
| | | ///</summary> |
| | | [SugarColumn(ColumnName = "DEPOT_ID")] |
| | | public decimal? DepotId { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 生产线组 |
| | | ///</summary> |
| | | [SugarColumn(ColumnName = "SJXB")] |
| | | public string? Sjxb { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 销售订单号 |
| | | ///</summary> |
| | | [SugarColumn(ColumnName = "XS_DDH")] |
| | | public string? XsDdh { get; set; } |
| | | |
| | | [SugarColumn(IsIgnore = true)] |
| | | public string? ItemName{ get; set; } |
| | | |
| | |
| | | (a, b, c, d, e) => b.ItemName.Contains(queryObj.ItemName)) |
| | | .WhereIF(StringUtil.IsNotNullOrEmpty(queryObj.ReleaseNo), |
| | | (a, b, c, d, e) => a.ReleaseNo.Contains(queryObj.ReleaseNo)) |
| | | .WhereIF(StringUtil.IsNotNullOrEmpty(queryObj.Sjxb), |
| | | (a, b, c, d, e) => a.Sjxb.Contains(queryObj.Sjxb)) |
| | | .WhereIF(StringUtil.IsNotNullOrEmpty(queryObj.XsDdh), |
| | | (a, b, c, d, e) => a.XsDdh.Contains(queryObj.XsDdh)) |
| | | .OrderByDescending((a, b, c, d, e) => a.Id) |
| | | .Select((a, b, c, d, e) => new MesOqcItemsDetect02() |
| | | { |