using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// KoubeiRetailWmsInboundworkConfirmModel Data Structure.
///
[Serializable]
public class KoubeiRetailWmsInboundworkConfirmModel : AopObject
{
///
/// 入库作业id
///
[XmlElement("inbound_work_id")]
public string InboundWorkId { get; set; }
///
/// 操作上下文
///
[XmlElement("operate_context")]
public OperateContext OperateContext { get; set; }
///
/// 备注信息
///
[XmlElement("remark")]
public string Remark { get; set; }
}
}