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.Inputs
{
///
/// 采购收货,销售发货,审核、审核反审核 输入参数
///
public class PurchaseAndSaleAuditUpInput
{
///
/// 要更新的id集合列表
///
public List ids { get; set; }
///
/// 1、审核 2、反审核
///
public EnumAuditType auditType { get; set; }
}
}