using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Himall.Core.Plugins.Message
{
///
/// 每个消息操作的状态
///
public enum StatusEnum
{
Open = 1,
Close = 2,
Disable = 3
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Himall.Core.Plugins.Message
{
///
/// 每个消息操作的状态
///
public enum MessageOrderType
{
Normal = 1,
Applet = 2,
O2OApplet = 3
}
}
using System;
using System.Collections.Gene