using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LearningOfficer.OA.Core.Entities.OA.Solution { /// /// 工具包下载记录 /// [SugarTable("tool_kit_downloadhistory")] public class ToolKitDownloadhistory:BaseEntity { /// /// 备 注:用户ID /// 默认值: /// [SugarColumn(ColumnName = "user_id")] public long UserId { get; set; } /// /// 用户云校Id /// [SugarColumn(ColumnName = "cloud_schoolid")] public long? CloudSchoolId { get; set; } /// /// 备 注:解决方案ID /// 默认值: /// [SugarColumn(ColumnName = "pro_id")] public long ProId { get; set; } /// /// 备 注:工具包ID /// 默认值: /// [SugarColumn(ColumnName = "tool_id")] public long ToolId { get; set; } /// /// 备 注:下载时间 /// 默认值: /// [SugarColumn(ColumnName = "addtime")] public DateTime Addtime { get; set; } /// /// 备 注:客户端类型 1:ios 2:Android /// 默认值: /// [SugarColumn(ColumnName = "client_type")] public int ClientType { get; set; } /// /// 学校Id /// [SugarColumn(ColumnName = "school_id",IsJson =true)] public List SchoolId { get; set; } } }