Files
zszq-trs/YLErpDAL/Modules/TaskEventModule/Dto/GuoXinDataPushEventLogDto.cs
T
2024-05-09 14:06:26 +08:00

36 lines
776 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YLErp.Modules.TaskEventModule.Dto
{
public class GuoXinDataPushEventLogDto
{
public int id { get; set; }
public string EventArgs { get; set; }
public DateTime StartDate { get; set; }
public DateTime EndDate { get; set; }
public int Status { get; set; }
public string ErrorMsg { get; set; }
public string OptName { get; set; }
public DateTime? OptDate { get; set; }
public string DateSelect
{
get
{
return StartDate.ToString("yyyy.MM.dd") + "-" + EndDate.ToString("yyyy.MM.dd");
}
}
}
}