namespace OASystem.Domain.ViewModels { public class ViewBase { /// /// 数据获取时间 /// public string ReceiveDt { get; set; } = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"); /// /// 数据返回时间 /// public string ReturnDt { get; set; } = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"); } }