using System; namespace IMCS.CCS.Entitys { /// /// 任务日志信息 /// public class JobLoggerInfo { public Guid Id { get; set; } public Guid TasksId { get; set; } public string Text { get; set; } public DateTime CreateTime { get; set; } } }