using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace EC_SeckillInfo
{
///
///订单回访记录
///
[SugarTable("OA_VisitNote")]
public partial class OA_VisitNote
{
public OA_VisitNote(){
}
///
/// Desc:主键(订单编号)
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true)]
public int Keyid {get;set;}
///
/// Desc:回访状态
/// Default:
/// Nullable:True
///
public bool? IsVisited {get;set;}
///
/// Desc:评分
/// Default:
/// Nullable:True
///
public string Scores {get;set;}
///
/// Desc:评分理由
/// Default:
/// Nullable:True
///
public string Reason {get;set;}
///
/// Desc:维护建议
/// Default:
/// Nullable:True
///
public string Advice {get;set;}
///
/// Desc:最后修改时间
/// Default:
/// Nullable:False
///
public DateTime LastUpdateTime {get;set;}
///
/// Desc:操作人
/// Default:
/// Nullable:False
///
public string Operator {get;set;}
}
}