using SqlSugar;
namespace HH.WCS.Mobox3.RiDong.models;
///
/// 读取PLC信息
///
[SugarTable("TN_PLCToWCS")]
public class PLCToWCS : BaseModel
{
///
/// 目的地
///
public int Destination { get; set; }
///
/// 重量
///
public int Weight { get; set; }
///
/// 高度
///
public int Height { get; set; }
///
/// 宽度
///
public int Width { get; set; }
///
/// 条码
///
public string BarCode { get; set; }
}