24 lines
462 B
C#
24 lines
462 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace JSMachine.WMS.App.Dto.Enum
|
|
{
|
|
/// <summary>
|
|
/// 回调Erp失败/成功 1:成功 0:失败
|
|
/// </summary>
|
|
public enum CallBackErpEndEnum
|
|
{
|
|
/// <summary>
|
|
/// 失败
|
|
/// </summary>
|
|
fail = 0,
|
|
/// <summary>
|
|
/// 成功
|
|
/// </summary>
|
|
success = 1
|
|
}
|
|
}
|