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.
|
|
|
|
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 CautionNoticeTaskEnum
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 计费周差异
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("计费周差异")]
|
|
|
|
|
WeekAt,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 计费日期差异
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("计费日期差异")]
|
|
|
|
|
PriceCalcDate
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum CautionNoticeTypeEnum
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 钉钉消息
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("钉钉消息")]
|
|
|
|
|
DingDing,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 邮件提醒
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("邮件提醒")]
|
|
|
|
|
Email
|
|
|
|
|
}
|
|
|
|
|
}
|