You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
903 B
C#
53 lines
903 B
C#
|
|
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; }
|
|
}
|
|
}
|