using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace djy.Model.ReportDto { public class ReportDto { public string GID { get; set; } public string UserID { get; set; } public string UserName { get; set; } public string CompID { get; set; } public string CompName { get; set; } public string TemplateID { get; set; } public string TemplateName { get; set; } public string TemplateDescribe { get; set; } public bool? IsBook { get; set; } public bool? IsWechat { get; set; } public bool? IsEmail { get; set; } public string DJson { get; set; } public DateTime? EndTime { get; set; } public DateTime CreateTime { get; set; } public int? TemplateType { get; set; } } }