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.

35 lines
756 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.Module.Core.Enums
{
/// <summary>
/// 调用爬虫网站时的WebCode参数类型
/// </summary>
public enum WebCodeEnum
{
[Description("场站编码")]
YARD = 11,
[Description("互联网+(定时任务)")]
HLW_CD = 21,
//[Description("互联网主单回执")]
//HLW_ZH = 22,
//[Description("互联网分单回执")]
//HLW_FD = 23,
[Description("单船单票(可查页面)")]
YGT = 31,
//[Description("云港通运综(定时任务上传该代号)")]
//YGT_YZ = 32,
}
}