61 lines
1.7 KiB
C#
61 lines
1.7 KiB
C#
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
|
||
{
|
||
/// <summary>
|
||
/// 工具包下载记录
|
||
/// </summary>
|
||
[SugarTable("tool_kit_downloadhistory")]
|
||
public class ToolKitDownloadhistory:BaseEntity
|
||
{
|
||
/// <summary>
|
||
/// 备 注:用户ID
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "user_id")]
|
||
public long UserId { get; set; }
|
||
/// <summary>
|
||
/// 用户云校Id
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "cloud_schoolid")]
|
||
public long? CloudSchoolId { get; set; }
|
||
/// <summary>
|
||
/// 备 注:解决方案ID
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "pro_id")]
|
||
public long ProId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 备 注:工具包ID
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "tool_id")]
|
||
public long ToolId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 备 注:下载时间
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "addtime")]
|
||
public DateTime Addtime { get; set; }
|
||
|
||
/// <summary>
|
||
/// 备 注:客户端类型 1:ios 2:Android
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "client_type")]
|
||
public int ClientType { get; set; }
|
||
/// <summary>
|
||
/// 学校Id
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "school_id",IsJson =true)]
|
||
public List<long> SchoolId { get; set; }
|
||
}
|
||
}
|