using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NFine.Domain._03_Entity.WMS
{
public class ForkLiftResult
{
///
/// 结果编码(0:成功)
///
public int Ret { get; set; }
///
/// 返回信息
///
public string RetMsg { get; set; }
}
}