库存清单查找出入库记录数据接口

This commit is contained in:
2026-01-13 13:57:56 +08:00
parent 7e47bed4d5
commit ad9938fa0d
4 changed files with 48 additions and 0 deletions

View File

@@ -105,4 +105,18 @@ namespace DOAN.Model.BZFM.Dto
[SugarColumn(ColumnName = "created_time")]
public DateTime? CreatedTime { get; set; }
}
/// <summary>
/// 库存清单查询进出库记录对象
/// </summary>
public class MmInventoryRecordDto : PagerInfo
{
public string MaterialCode { get; set; }
public string LocationCode { get; set; }
public string SupplierCode { get; set; }
public string BatchNo { get; set; }
}
}