12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Runtime.Serialization;
- using System.Text;
- using System.Threading.Tasks;
- namespace NXWMS.Model.CoreModels
- {
- /// <summary>
- /// 操作信息
- /// </summary>
- public class OperationInfo
- {
- /// <summary>
- /// 操作用户Id
- /// </summary>
-
- public int OperationUserId { get; set; }
- /// <summary>
- /// 操作时间
- /// </summary>
-
- public DateTime? OperationTime { get; set; }
- }
- }
|