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