using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HighWayIot.Repository.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; }
}
}