36 lines
776 B
C#
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");
|
|
}
|
|
}
|
|
}
|
|
}
|