24 lines
809 B
C#
24 lines
809 B
C#
using System;
|
|
using System.Linq;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Data;
|
|
|
|
namespace DeiNiu.Wms.CE.Util
|
|
{
|
|
public class WmsConstants
|
|
{
|
|
|
|
public static DataTable dictionary = new DataTable();
|
|
public static List<string> auths = new List<string>();
|
|
public static string SPLIT = "|*|";
|
|
public static List<string> partions ;
|
|
public static string PERMISSION_RECEIVE = "货物收货权限";
|
|
public static string PERMISSION_VALID = "货物验收权限";
|
|
public static string SPECIAL_AUTHS_SUPER = "超级权限";
|
|
public static string SPECIAL_VALID_NEAR_EXPIRED = "临期入库";
|
|
public static string SPECIAL_ALL_PARTION_TASKS = "跨区任务可见";
|
|
public static int SECOND_VALID_ER = 0;
|
|
}
|
|
}
|