using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace wms.sqlsugar.model.fj
{
[Tenant("fj")]
[SugarTable("base_warehouse", "仓库表")]
public class fjBaseWarehouse : BaseModel
{
///
/// 仓库编码
///
[SugarColumn(ColumnName = "code", ColumnDataType = "nvarchar", Length = 50)]
public string Code { get; set; }
///
/// 仓库名称
///
[SugarColumn(ColumnName = "name", ColumnDataType = "nvarchar", Length = 100)]
public string Name { get; set; }
///
/// 仓库类型
///
[SugarColumn(ColumnName = "ware_type", ColumnDataType = "nvarchar", Length = 50)]
public string WareType { get; set; }
///
/// 仓库状态
///
[SugarColumn(ColumnName = "ware_state", ColumnDataType = "nvarchar", Length = 50)]
public string WareState { get; set; }
///
/// 厂区
///
[SugarColumn(ColumnName = "factory_no", ColumnDataType = "nvarchar", Length = 50)]
public string FactoryNo { get; set; }
///
/// 仓库地址ID
///
[SugarColumn(ColumnName = "ware_addr_id")]
public long WareAddrID { get; set; }
///
/// 仓库对数据连接
///
[SugarColumn(ColumnName = "ware_db_link", ColumnDataType = "nvarchar", Length = 100)]
public string WareDbLink { get; set; }
}
}