using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tiger.Model.Base
{
///
/// 业务单据基类接口
///
public interface iBizOrder
{
string ORDER_NO { get; set; }
}
///
/// 备料业务捡料明细基类接口
///
public interface iPrepPickItem
{
///
/// 获取备料捡料明细
///
BIZ_WMS_PREP_SRC_DTL GetPickItem();
}
}