mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-14 21:46:38 +08:00
19 lines
500 B
C#
19 lines
500 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Yi.Framework.Model.Base;
|
|
using Yi.Framework.Model.ERP.Entitys;
|
|
|
|
namespace Yi.Framework.DtoModel.ERP.StockDetails
|
|
{
|
|
public class StockDetailsGetListInput
|
|
{
|
|
public long WarehouseName { get; set; }
|
|
public long MaterialName { get; set; }
|
|
public string? Quality { get; set; }
|
|
public StockDetailsTypeEnum StockDetailsType { get; set; }
|
|
}
|
|
}
|