using System;
using SqlSugar;
namespace RiskControl.NewService.Entity.RiskControlRR
{
///
/// 支付错误日志
///
public class PayErrLog
{
///
///
///
[SugarColumn(ColumnName = "Id", IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
///
/// 订单编号
///
[SugarColumn(ColumnName = "OrderNo")]
public string OrderNo { get; set; }
///
/// 订单编号
///
[SugarColumn(ColumnName = "Content")]
public string Content { get; set; }
///
/// 创建时间
/// 默认值: (getdate())
///
[SugarColumn(ColumnName = "CreateTime")]
public DateTime CreateTime { get; set; } = DateTime.Now;
}
}