Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/Video/VideoCollectionInfoEditReq.cs

53 lines
1.3 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.Common.Dtos.Video
{
public class VideoCollectionInfoEditReq
{
/// <summary>
/// id
///</summary>
public long Id { get; set; } = 0;
public string CourseName { get; set; } = "";
/// <summary>
/// 备 注:视频合集id
///</summary>
public long CourseId { get; set; }
/// <summary>
/// 备 注:视频类型默认0免费1积分
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "course_type")]
public int CourseType { get; set; }
/// <summary>
/// 备 注:兑换积分
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "change_points")]
public int ChangePoints { get; set; }
/// <summary>
/// 备 注:云校id
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "cloud_school")]
public List<long> CloudSchool { get; set; }
/// <summary>
/// 备 注:职级角色0全部
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "role_enum")]
public List<int> RoleEnum { get; set; }
}
}