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.
22 lines
742 B
22 lines
742 B
using System;
|
|
|
|
namespace SSWMS.Common
|
|
{
|
|
[Serializable]
|
|
public class RECORD_MAIN
|
|
{
|
|
public int RECORD_ID { get; set; }
|
|
public int PLAN_ID { get; set; }
|
|
public string MANAGE_TYPE { get; set; }
|
|
public string MANAGE_STATUS { get; set; }
|
|
public string STOCK_BARCODE { get; set; }
|
|
public string START_POSITION { get; set; }
|
|
public string END_POSITION { get; set; }
|
|
public string NEXT_POSITION { get; set; }
|
|
public string RECORD_OPERATOR { get; set; }
|
|
public string MANAGE_BEGIN_TIME { get; set; }
|
|
public string MANAGE_END_TIME { get; set; }
|
|
public string RECORD_REMARK { get; set; }
|
|
public string ERROR_TEXT { get; set; }
|
|
}
|
|
}
|