Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Core/Entities/OA/Solution/ToolKitDownloadhistory.cs

61 lines
1.7 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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>
/// 备 注:客户端类型 1ios 2Android
/// 默认值:
///</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; }
}
}