using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WMS.Core._02Entity
{
public class FX_ld_det
{
public string ld_domain { get; set; }
public string ld_site { get; set; }
///
/// 托盘号
///
public string ld_loc { get; set; }
///
/// 物料编号
///
public string ld_part { get; set; }
///
/// UID
///
public string ld_ref { get; set; }
///
/// 批次
///
public string ld_lot { get; set; }
///
/// 数量
///
public int ld_qty_oh { get; set; }
}
}