using System;
//Nhibernate Code Generation Template 1.0
//author:MythXin
//blog:www.cnblogs.com/MythXin
//Entity Code Generation Template
namespace NXWMS.DataAccess.Entity
{
//规则配置明细表(待定)
public class BAS_RULE_DTL
{
///
/// 系统主键
///
public int RULE_DTL_ID{get;set;}
///
/// NewId主键
///
public string NEWID{get;set;}
///
/// 规则表主键
///
public int RULE_ID{get;set;}
///
/// 规则项编码
///
public string RULE_ITEM_CODE{get;set;}
///
/// 规则项描述
///
public string RULE_ITEM_DESC{get;set;}
///
/// 参数标识。0:无参数;1:有参数。
///
public int PARAM_FLAG{get;set;}
///
/// 规则参数1
///
public string RULE_ITEM_PARAM1{get;set;}
///
/// 规则参数2
///
public string RULE_ITEM_PARAM2{get;set;}
///
/// 规则参数3
///
public string RULE_ITEM_PARAM3{get;set;}
///
/// 使用标识。0:禁用;1:启用。
///
public int USED_FLAG{get;set;}
///
/// 删除标识。0:未删除;1:已删除。
///
public int DEL_FLAG{get;set;}
///
/// 描述
///
public string DESCRIBE{get;set;}
///
/// 创建人
///
public int CREATE_BY{get;set;}
///
/// 创建时间
///
public DateTime CREATE_TIME{get;set;}
///
/// 最后更新人
///
public int UPDATE_BY{get;set;}
///
/// 最后更新时间
///
public DateTime UPDATE_TIME{get;set;}
///
/// 数据版本号
///
public int DATA_VERSION{get;set;}
///
/// 备用字段1
///
public string REMARKS1{get;set;}
///
/// 备用字段2
///
public string REMARKS2{get;set;}
///
/// 备用字段3
///
public string REMARKS3{get;set;}
///
/// 备用字段4
///
public string REMARKS4{get;set;}
///
/// 备用字段5
///
public string REMARKS5{get;set;}
}
}