22 lines
542 B
C#
22 lines
542 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Tnb.WarehouseMgr.Entities.Enums;
|
|
|
|
namespace Tnb.WarehouseMgr.Entities.Dto
|
|
{
|
|
public class InOutStockDetailQuery
|
|
{
|
|
/// <summary>
|
|
/// 出入库申请类型 1、入库 2、出库
|
|
/// </summary>
|
|
public EnumInOutStockType inoutStockType { get; set; }
|
|
/// <summary>
|
|
/// 出入库单明细Id
|
|
/// </summary>
|
|
public string bill_d_id { get; set; }
|
|
}
|
|
}
|