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.
25 lines
885 B
25 lines
885 B
using System;
|
|
|
|
namespace SSWMS.Common
|
|
{
|
|
[Serializable]
|
|
public class MANAGE_MAIN
|
|
{
|
|
public int MANAGE_ID { get; set; }
|
|
public int PLAN_ID { get; set; }
|
|
public int APPLY_ID { get; set; }
|
|
public int STORAGE_ID { get; set; }
|
|
public string MANAGE_TYPE { get; set; }
|
|
public string MANAGE_STATUS { get; set; }
|
|
public string STOCK_BARCODE { get; set; }
|
|
public string START_CELL_CODE { get; set; }
|
|
public string END_CELL_CODE { get; set; }
|
|
public string NEXT_CELL_CODE { get; set; }
|
|
public string LOCK_CELL_CODE { get; set; }
|
|
public string MANAGE_OPERATOR { get; set; }
|
|
public string MANAGE_CREATE_TIME { get; set; }
|
|
public string MANAGE_BEGIN_TIME { get; set; }
|
|
public string MANAGE_REMARK { get; set; }
|
|
public string ERROR_TEXT { get; set; }
|
|
}
|
|
}
|