using System;
using System.Collections.Generic;
namespace LifePayment.Application.Contracts;
public class RecordOperateHistoryEto
{
///
/// 关联关系ID
///
public Guid RelationId { get; set; }
///
/// 表类型 常量 TableType
///
public int? TableType { get; set; }
///
/// 操作名称
///
public string OperateName { get; set; }
///
/// 操作内容
///
public string OperateContent { get; set; }
///
/// 操作人
///
public string CreatorName { get; set; }
///
/// 操作细节
///
public string OperateDetail { get; set; }
///
/// 用户id
///
public Guid? UserId { get; set; }
}
public class RecordOperateHistoryListEto
{
public List DataList { get; set; }
}