using System;
using System.Collections.Generic;
using System.Text;
namespace wms.dto
{
public class Const
{
///
/// MES基础数据数据同步增量类型-物料
///
public const string MESMaterialInitIncrement = "MESMaterialInitIncrement";
///
/// 任务组名
///
public static readonly string JobGroupName = "DefaultGroup";
///
/// 触发器组名
///
public static readonly string TiggerGroupName = "DefaultGroupTrigger";
///
/// 合金库接驳口类型
///
public const string HJLocPortType = "HJLocPortType";
public const int Zero = 0;
public const int One = 1;
public const int MinOne = -1;
///
/// 合金仓库
///
public const string HjWareHouse = "";
///
/// 盘条仓库
///
public const string PtWareHouse = "pthouse";
///
/// 成品仓库
///
public const string CpWareHouse = "cphouse";
public const string SxWareHouse = "sxhouse";
///
/// 二楼出库站台设备号,手动出库使用,用于区分一、二楼任务
///
public static readonly string[] FloorEquip = { "1022", "1024", "1026" };
///
/// 生产叫料区6个缓存架
///
public const string Type = "Pt_6_Production";
///
/// 成品库请求生成入库任务设备常量
///
public static readonly string[] CpTaskInEquip = { "1011", "1012" };
///
/// 成品人工出库口
///
public static readonly string[] SouthOutEquip = { "1", "2" };
///
/// 时效扫码器分楼层
///
public static readonly string[] SxFloorEquip = { "2134", "2258", "2419" };
}
}