41 lines
927 B
C#
41 lines
927 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using WGShare.Domain.Enums;
|
|
using Yitter.IdGenerator;
|
|
|
|
namespace WGShare.Domain.DTOs.Room
|
|
{
|
|
public class RoomOutputDTO
|
|
{
|
|
public string Id { get; set; }
|
|
/// <summary>
|
|
/// 会议室名称
|
|
///</summary>
|
|
public string RoomName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 会议号
|
|
/// </summary>
|
|
public string RoomNum { get; set; }
|
|
/// <summary>
|
|
/// 在线人数
|
|
/// </summary>
|
|
public long OnlineUserCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 届
|
|
///</summary>
|
|
public int Year { get; set; }
|
|
/// <summary>
|
|
/// 科目
|
|
///</summary>
|
|
public SubjectType Subject { get; set; }
|
|
|
|
public bool AllowAnonymous { get; set; }
|
|
}
|
|
}
|