using SqlSugar;
namespace Aucma.Scada.Model.domain
{
///
/// 货道信息
///
[SugarTable("BASE_SPACEINFO")]
public class BaseSpaceInfo
{
///
/// 主键标识
///
[SugarColumn(ColumnName = "OBJ_ID", IsPrimaryKey = true, IsIdentity = true)]
public int objId { get; set; }
///
/// 货道编号
///
[SugarColumn(ColumnName = "SPACE_CODE")]
public string spaceCode { get; set; }
///
/// 货道名称
///
[SugarColumn(ColumnName = "SPACE_NAME")]
public string spaceName { get; set; }
///
/// 货道容量
///
[SugarColumn(ColumnName = "SPACE_CAPACITY")]
public int spaceCapacity { get; set; }
///
/// 货道库存
///
[SugarColumn(ColumnName = "SPACE_STOCK")]
public int spaceStock { get; set; }
///
/// 货道状态
///
[SugarColumn(ColumnName = "SPACE_STATUS")]
public int spaceStatus { get; set; }
///
/// 货道类型
///
[SugarColumn(ColumnName = "SPACE_TYPE")]
public int spaceType { get; set; }
///
/// 物料类型
///
[SugarColumn(ColumnName = "MATERIAL_TYPE")]
public string materialType { get; set; }
///
/// 所属仓库
///
[SugarColumn(ColumnName = "STORE_CODE")]
public string storeCode { get; set; }
///
/// 是否标识
///
[SugarColumn(ColumnName = "IS_FLAG")]
public int isFlag { get; set; }
///
/// 在途数量
///
[SugarColumn(ColumnName = "ONROUTE_AMOUNT")]
public int onRouteAmount { get; set; }
///
/// 出库数量
///
[SugarColumn(ColumnName = "OUTROUTE_AMOUNT")]
public int outRouteAmount { get; set; }
///
/// 入库标识:1-允许入库;2-禁止入库
///
[SugarColumn(ColumnName = "INSTORE_FLAG")]
public int inStoreFlag { get; set; }
///
/// 出库标识:1-允许出库;2-禁止出库
///
[SugarColumn(ColumnName = "OUTSTORE_FLAG")]
public int outStoreFlag { get; set; }
///
/// 异常标识:1-正常货道;2-异常货道
///
[SugarColumn(ColumnName = "UNUSUAL_FLAG")]
public int unusualFlag { get; set; }
}
}