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.
58 lines
1.2 KiB
C#
58 lines
1.2 KiB
C#
using FreeSql.DataAnnotations;
|
|
using Newtonsoft.Json;
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace djy.Model.Report
|
|
{
|
|
[JsonObject(MemberSerialization.OptIn), Table(Name = "DS_Report", DisableSyncStructure = true)]
|
|
public class DS_Report
|
|
{
|
|
[JsonProperty, Column(IsPrimary = true, IsNullable = false)]
|
|
[MaxLength(50)]
|
|
public string GID { get; set; }
|
|
|
|
[MaxLength(50)]
|
|
public string UserID { get; set; }
|
|
|
|
[MaxLength(50)]
|
|
public string UserName { get; set; }
|
|
|
|
[MaxLength(50)]
|
|
public string CompID { get; set; }
|
|
|
|
[MaxLength(100)]
|
|
public string CompName { get; set; }
|
|
|
|
[MaxLength(50)]
|
|
public string TemplateID { get; set; }
|
|
|
|
|
|
public bool? IsBook { get; set; }
|
|
|
|
|
|
public bool? IsWechat { get; set; }
|
|
|
|
|
|
public bool? IsEmail { get; set; }
|
|
|
|
[MaxLength(5000)]
|
|
public string DJson { get; set; }
|
|
|
|
|
|
public DateTime? EndTime { get; set; }
|
|
|
|
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
|
|
public DateTime? LastUpdate { get; set; }
|
|
|
|
|
|
public bool? IsDel { get; set; }
|
|
|
|
[MaxLength(50)]
|
|
public string LastUserId { get; set; }
|
|
}
|
|
}
|