first commit

This commit is contained in:
2026-09-02 16:31:50 +08:00
commit a461727193
911 changed files with 692450 additions and 0 deletions
@@ -0,0 +1,35 @@
using JSMachine.WMS.RPC.ErpRPC.Dto.In.BusinessDto;
namespace JSMachine.WMS.RPC.ErpRPC.Dto.In
{
/// <summary>
/// 出库撤单参数
/// </summary>
public class ErpCancelOrderParam: BusinessParamBase
{
/// <summary>
/// 销售出库单号
/// </summary>
public string saleNo { get; set; }
/// <summary>
/// 物料类型
/// </summary>
public string materiaType { get; set; }
/// <summary>
/// 客户名称
/// </summary>
public string customName { get; set; }
/// <summary>
/// 物料名称
/// </summary>
public string materiaName { get; set; }
/// <summary>
/// 批次号
/// </summary>
public string materiaBatch { get; set; }
}
}