You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
609 B
C#
27 lines
609 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 触发器触发动作枚举
|
|
/// </summary>
|
|
public enum StatusTriggerNextActionTypeEnum
|
|
{
|
|
/// <summary>
|
|
/// 消息提醒
|
|
/// </summary>
|
|
[Description("消息提醒")]
|
|
MESSAGE_CAUTION,
|
|
/// <summary>
|
|
/// 触发其他状态
|
|
/// </summary>
|
|
[Description("触发其他状态#SHOWACTS#")]
|
|
TRIGGER_ACTIVITIES
|
|
}
|
|
}
|