24 lines
547 B
C#
24 lines
547 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Tnb.WarehouseMgr.Entities.Consts
|
|
{
|
|
public class WmsCarryConst
|
|
{
|
|
/// <summary>
|
|
/// 载具更换EnCode业务编码
|
|
/// </summary>
|
|
public const string WMS_CARRY_REPLACE_ENCODE = "WmsCarryReplace";
|
|
|
|
/// <summary>
|
|
/// 物料签收编码
|
|
/// </summary>
|
|
public const string MATERIAL_RECEIPT_CODE = "MaterialReceipt";
|
|
|
|
|
|
}
|
|
}
|