using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace WMS.Core
{
///
///
///
[SugarTable("BASE_IMPORTBASE")]
public partial class BASE_IMPORTBASE
{
public BASE_IMPORTBASE(){
}
///
/// Desc:表名
/// Default:
/// Nullable:True
///
public string TABLENAME {get;set;}
///
/// Desc:数据库字段
/// Default:
/// Nullable:True
///
public string DBCELLNAME {get;set;}
///
/// Desc:EXECL字段
/// Default:
/// Nullable:True
///
public string EXECLCELLNAME {get;set;}
///
/// Desc:业务主键
/// Default:
/// Nullable:True
///
public string F_NO {get;set;}
///
/// Desc:表头表体,表示值从表头取还是表体取
/// Default:
/// Nullable:True
///
public string F_DATATYPE {get;set;}
///
/// Desc:是否必填。1:非空。0:可空
/// Default:
/// Nullable:True
///
public decimal? F_ISNULL {get;set;}
}
}