Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/FeedBack/H5/H5TopIdeasRankingVM.cs

43 lines
1.1 KiB
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.FeedBack.H5
{
public class H5TopIdeasRankingVM
{
/// <summary>
/// 姓名
/// </summary>
public string RealName { get; set; }
/// <summary>
/// 备 注:头像
/// 默认值:
///</summary>
public string HeadImage { get; set; } = "";
/// <summary>
/// 用户Id
/// </summary>
public long UserId { get; set; }
/// <summary>
/// 云校名称
/// </summary>
public string CloudSchoolName { get; set; }
/// <summary>
/// 云校ID
/// </summary>
public long CloundSchoolId { get; set; }
/// <summary>
/// 被采纳建议条数
/// </summary>
public int Count { get; set; }
/// <summary>
/// 最后一条建议的提交时间
/// </summary>
public DateTime LastAddTime { get; set; }
}
}