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; } } }