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.
31 lines
742 B
C#
31 lines
742 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Core.Const
|
|
{
|
|
public class MenuConst
|
|
{
|
|
/// <summary>
|
|
/// 订舱台账菜单
|
|
/// </summary>
|
|
public const long MenuBookingOrder = 351064299098181;
|
|
/// <summary>
|
|
/// 我的任务台账
|
|
/// </summary>
|
|
public const long MenuTaskManage = 375504048771141;
|
|
|
|
/// <summary>
|
|
/// 马士基API订舱
|
|
/// </summary>
|
|
public const long MenuMSKApi = 526643045195845;
|
|
|
|
/// <summary>
|
|
/// 往来单位维护
|
|
/// </summary>
|
|
public const long MenuDjyCustomer = 348241409437765;
|
|
}
|
|
}
|