using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RS.Model { /// /// 操作-日志-操作日志 /// public class OperateOperationLog { /// /// 操作时间 /// public string operationStartTime { get; set; } /// /// 操作用户所在分组 /// public string userGroup { get; set; } /// /// 操作信息 /// public string operationInfo { get; set; } } }