LifePayment/LifePayment.Domain.Shared/LogRecord/LogFrontInput.cs | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
LifePayment/LifePayment.Domain.Shared/LogRecord/LogFrontInput.cs
New file @@ -0,0 +1,28 @@ using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LifePayment.Domain.Shared { public class LogFrontInput { /// <summary> /// 用户Id /// </summary> public string UserId { get; set; } /// <summary> /// 消息 /// </summary> public string Message { get; set; } /// <summary> /// 地址 /// </summary> public string Url { get; set; } /// <summary> /// 请求时间 /// </summary> public DateTime? RequestTime { get; set; } } }