old_flsystem/类库/Api.Framework/Model/fl_operation_log.cs

34 lines
785 B
C#
Raw Normal View History

2022-09-20 03:10:29 +00:00
using Api.Framework.Enums;
using Api.Framework.Tools;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Api.Framework.Model
{
/// <summary>
/// 操作日志
/// </summary>
public class fl_operation_log : base_model
{
/// <summary>
/// 操作类型
/// </summary>
public OperationType otype { get; set; }
/// <summary>
/// 旧数据
/// </summary>
public string old_text { get; set; }
/// <summary>
/// 新数据
/// </summary>
public string new_text { get; set; }
/// <summary>
/// 修改日志
/// </summary>
public DateTime datetime { get; set; }
}
}