using System.ComponentModel.DataAnnotations.Schema;
namespace YLErp.DBModels
{
///
/// 客户审核日志
///
[Table("clientrating_log")]
public class ClientRatingLog
{
///
/// 主键ID
///
public int id { get; set; }
///
/// 资信评级ID
///
public int RatingId { get; set; }
///
/// 更改类型
///
public string OptType { get; set; }
///
/// 变更信息
///
public string Changes { get; set; }
///
/// 操作人Id
///
public int OptId { get; set; }
///
/// 操作人
///
public string OptName { get; set; }
///
/// 操作时间
///
public DateTime OptDate { get; set; }
}
[NotMapped]
public class ClientRatingLogDto : ClientRatingLog
{
}
}