using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace EC_SeckillInfo
{
///
///
///
[SugarTable("Integrity_CreditLevelRule")]
public partial class Integrity_CreditLevelRule
{
public Integrity_CreditLevelRule(){
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true,IsIdentity=true)]
public int RuleId {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public bool? RuleType {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public string LevelName {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public string LevelIcon {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public int? MaxCredit {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public string NextLevelRule {get;set;}
///
/// Desc:
/// Default:
/// Nullable:False
///
public DateTime LastUpdateTime {get;set;}
///
/// Desc:
/// Default:
/// Nullable:False
///
public string Operator {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Remark {get;set;}
}
}