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