新增出库记录交易类型字段及查询支持

在 MmRecordOutboundDto 中新增 TransactionType 字段;
在 MmRecordOutboundService 的 QueryExp 方法中,增加对 TransactionType 的模糊查询条件,支持按交易类型筛选出库记录。
This commit is contained in:
2026-01-04 14:06:29 +08:00
parent 0f712981ab
commit 28dcf5678c
2 changed files with 3 additions and 0 deletions

View File

@@ -11,6 +11,8 @@ namespace DOAN.Model.BZFM.Dto
public string OutboundNo { get; set; }
public DateTime? CreatedTime { get; set; }
public string TransactionType { get; set; }
}
/// <summary>