using System;
using System.Collections.Generic;
using System.Linq;
using AUCMA.STORE.Entity.Enums;
using SqlSugar;
namespace AUCMA.STORE.Entity.DAO
{
///
/// 仓库信息
///
[SugarTable("BASE_STORE_INFO")]
public class BaseStoreInfo
{
///
/// 主键
///
[SugarColumn(ColumnName="OBJID" ,IsPrimaryKey = true )]
public string objid { get; set; }
///
/// 仓库编码
///
[SugarColumn(ColumnName="STORE_CODE" )]
public string storeCode { get; set; }
///
/// 仓库名称
///
[SugarColumn(ColumnName="STORE_NAME" )]
public string storeName { get; set; }
///
/// 仓库位置
///
[SugarColumn(ColumnName="STORE_POSITION" )]
public string storePosition { get; set; }
///
/// 库位数量
///
[SugarColumn(ColumnName="FACT_AMOUNT" )]
public int factAmount { get; set; }
///
/// 占用数量
///
[SugarColumn(ColumnName="PLAN_AMOUNT" )]
public int planAmount { get; set; }
///
/// 仓库状态
///
[SugarColumn(ColumnName="STORE_STATUS" )]
public int storeStatus { get; set; }
///
/// 备注
///
[SugarColumn(ColumnName="REMARK" )]
public string remark { get; set; }
///
/// 删除标志
///
[SugarColumn(ColumnName="DELETE_FLAG" )]
public DeleteFlag deleteFlag { get; set; }
///
/// 记录时间
///
[SugarColumn(ColumnName="RECORD_TIME" )]
public DateTime? recordTime { get; set; }
}
}