You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
637 B
28 lines
637 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace RS.Model
|
|
{
|
|
/// <summary>
|
|
/// 操作-日志-操作日志
|
|
/// </summary>
|
|
public class OperateOperationLog
|
|
{
|
|
/// <summary>
|
|
/// 操作时间
|
|
/// </summary>
|
|
public string operationStartTime { get; set; }
|
|
/// <summary>
|
|
/// 操作用户所在分组
|
|
/// </summary>
|
|
public string userGroup { get; set; }
|
|
/// <summary>
|
|
/// 操作信息
|
|
/// </summary>
|
|
public string operationInfo { get; set; }
|
|
}
|
|
}
|