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
{
///
/// 操作日志
///
public class fl_operation_log : base_model
{
///
/// 操作类型
///
public OperationType otype { get; set; }
///
/// 旧数据
///
public string old_text { get; set; }
///
/// 新数据
///
public string new_text { get; set; }
///
/// 修改日志
///
public DateTime datetime { get; set; }
}
}