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.
32 lines
778 B
C#
32 lines
778 B
C#
using FreeSql.DataAnnotations;
|
|
using Newtonsoft.Json;
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace djy.Model.Report
|
|
{
|
|
[JsonObject(MemberSerialization.OptIn), Table(Name = "DS_ReportTemplate", DisableSyncStructure = true)]
|
|
public class DS_ReportTemplate
|
|
{
|
|
[JsonProperty, Column(IsPrimary = true, IsNullable = false)]
|
|
[MaxLength(50)]
|
|
public string GID { get; set; }
|
|
|
|
[MaxLength(50)]
|
|
public string TemplateName { get; set; }
|
|
|
|
[MaxLength(5000)]
|
|
public string TemplateDescribe { get; set; }
|
|
|
|
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
|
|
public int SendType { get; set; }
|
|
|
|
public string SendObj { get; set; }
|
|
|
|
public int? TemplateType { get; set; }
|
|
}
|
|
}
|