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.
20 lines
573 B
20 lines
573 B
1 year ago
|
using System;
|
||
|
|
||
|
namespace SSWMS.Common
|
||
|
{
|
||
|
[Serializable]
|
||
|
public class STORAGE_MAIN
|
||
|
{
|
||
|
public int STORAGE_ID { get; set; }
|
||
|
public int GOODS_ID { get; set; }
|
||
|
public int PLAN_ID { get; set; }
|
||
|
public string CELL_CODE { get; set; }
|
||
|
public string STOCK_BARCODE { get; set; }
|
||
|
public string ENTRY_TIME { get; set; }
|
||
|
public string UPDATE_TIME { get; set; }
|
||
|
public string CELL_MODEL { get; set; }
|
||
|
public string STOCK_WEIGHT { get; set; }
|
||
|
public string STORAGE_PROPERTY { get; set; }
|
||
|
}
|
||
|
}
|