using System;
namespace SSWMS.Common
{
[Serializable]
public class PLAN_MAIN
{
public int PLAN_ID { get; set; }
///
/// 拣货单号
///
public string PLAN_CODE { get; set; }
public string PLAN_TYPE { get; set; }
public string PLAN_ERP_TYPE { get; set; }
public string PLAN_CREATE_TIME { get; set; }
public string PLAN_BEGIN_TIME { get; set; }
public string PLAN_END_TIME { get; set; }
public string PLAN_STATUS { get; set; }
public string PLAN_CREATER { get; set; }
///
/// 备注
///
public string PLAN_REMARK { get; set; }
public string ERROR_TEXT { get; set; }
///
/// shipmentPort 发货口
///
public string PLAN_STATION { get; set; }
///
/// customerCode 客户编码
///
public string PLAN_PROPERTY_01 { get; set; }
///
/// customerName 客户名称
///
public string PLAN_PROPERTY_02 { get; set; }
///
/// deliveryPlatform 发货平台
///
public string PLAN_PROPERTY_03 { get; set; }
///
/// priority 优先级
///
public string PLAN_PROPERTY_04 { get; set; }
///
/// type 保留字段
///
public string PLAN_PROPERTY_05 { get; set; }
public string PLAN_PROPERTY_06 { get; set; }
}
}