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.
28 lines
1.0 KiB
28 lines
1.0 KiB
using System;
|
|
|
|
namespace SSWMS.Common
|
|
{
|
|
[Serializable]
|
|
public class IO_CONTROL
|
|
{
|
|
public int CONTROL_ID { get; set; }
|
|
public int RELATIVE_CONTROL_ID { get; set; }
|
|
public int MANAGE_ID { get; set; }
|
|
public string STOCK_BARCODE { get; set; }
|
|
public int PRE_CONTROL_STATUS { get; set; }
|
|
public int CONTROL_TASK_TYPE { get; set; }
|
|
public string CONTROL_TASK_LEVEL { get; set; }
|
|
public string START_WAREHOUSE_CODE { get; set; }
|
|
public string END_WAREHOUSE_CODE { get; set; }
|
|
public string START_DEVICE_CODE { get; set; }
|
|
public string END_DEVICE_CODE { get; set; }
|
|
public int CONTROL_STATUS { get; set; }
|
|
public string ERROR_TEXT { get; set; }
|
|
public string CONTROL_BEGIN_TIME { get; set; }
|
|
public string CONTROL_END_TIME { get; set; }
|
|
public string CONTROL_REMARK { get; set; }
|
|
public string STOCK_SIZE { get; set; }
|
|
public string STOCK_HEIGHT { get; set; }
|
|
public string PLAN_CODE { get; set; }
|
|
}
|
|
}
|