using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BPA.MES.Base.Application.Services
{
///
/// 名 称 :
/// 创 建 人 :yangxiao
/// 创建时间 : 2023/7/20 15:15:48
/// 描 述 :
///
public class OperLogDto
{
///
/// 操作标题
///
public string Name { get; set; }
///
/// 内容
///
public string Context { get; set; }
///
/// 创建时间
///
public DateTime CreateTime { get; set; }
}
///
/// 增加
///
public class OperLogAddInput: OperLogDto
{
}
}