52 lines
1.2 KiB
C#
52 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using SqlSugar;
|
|
|
|
namespace LearningOfficer.OA.Core.Entities.OA.VideoCollection
|
|
{
|
|
/// <summary>
|
|
/// 视频合集兑换信息
|
|
///</summary>
|
|
[SugarTable("video_collection_points_user")]
|
|
public class VideoCollectionPointsUser : BaseEntity
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:课程合集id
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "course_id" )]
|
|
public long CourseId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:兑换用户id
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "user_id" )]
|
|
public long UserId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:兑换时间
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "addtime" )]
|
|
public DateTime Addtime { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:兑换积分
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "change_points" )]
|
|
public int ChangePoints { get; set; }
|
|
|
|
|
|
}
|
|
|
|
} |