23 lines
438 B
C#
23 lines
438 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YLErp.DBModels.Enums
|
|
{
|
|
/// <summary>
|
|
/// 互换数据推送状态
|
|
/// </summary>
|
|
public enum SwapPushDataStateEnum
|
|
{
|
|
待推送,
|
|
推送中,
|
|
推送成功,
|
|
推送失败,
|
|
接收处理成功,
|
|
接收处理失败,
|
|
接收处理中,
|
|
}
|
|
}
|