You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.6 KiB
51 lines
1.6 KiB
using System;
|
|
|
|
namespace SSWMS.Common
|
|
{
|
|
[Serializable]
|
|
public class PLAN_MAIN
|
|
{
|
|
public int PLAN_ID { get; set; }
|
|
/// <summary>
|
|
/// 拣货单号
|
|
/// </summary>
|
|
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; }
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public string PLAN_REMARK { get; set; }
|
|
public string ERROR_TEXT { get; set; }
|
|
/// <summary>
|
|
/// shipmentPort 发货口
|
|
/// </summary>
|
|
public string PLAN_STATION { get; set; }
|
|
/// <summary>
|
|
/// customerCode 客户编码
|
|
/// </summary>
|
|
public string PLAN_PROPERTY_01 { get; set; }
|
|
/// <summary>
|
|
/// customerName 客户名称
|
|
/// </summary>
|
|
public string PLAN_PROPERTY_02 { get; set; }
|
|
/// <summary>
|
|
/// deliveryPlatform 发货平台
|
|
/// </summary>
|
|
public string PLAN_PROPERTY_03 { get; set; }
|
|
/// <summary>
|
|
/// priority 优先级
|
|
/// </summary>
|
|
public string PLAN_PROPERTY_04 { get; set; }
|
|
/// <summary>
|
|
/// type 保留字段
|
|
/// </summary>
|
|
public string PLAN_PROPERTY_05 { get; set; }
|
|
public string PLAN_PROPERTY_06 { get; set; }
|
|
}
|
|
}
|