新增物料编码与入库单号属性及查询条件

在 MmRecordInboundDto 中新增 MaterialCode 和 InboundNo 属性;在 MmRecordInboundService 的 QueryExp 方法中,增加对这两个字段的模糊查询支持,完善入库记录的查询功能。
This commit is contained in:
2026-01-04 11:55:06 +08:00
parent b90225eb41
commit 0f712981ab
2 changed files with 6 additions and 0 deletions

View File

@@ -11,6 +11,10 @@ namespace DOAN.Model.BZFM.Dto
public string Operator { get; set; }
public DateTime? CreatedTime { get; set; }
public string MaterialCode { get; set; }
public string InboundNo { get; set; }
}
/// <summary>