Zxd.Core/code/Zxd.Domain/Dto/Resource/ScreenRecordDto.cs

49 lines
1.6 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Zxd.Domain.Dto.Resource
{
public enum ScreenRecordType
{
= 1,
= 2
}
public class ScreenRecordRequest : SearchPageBase
{
public string? AppId { get; set; }
public int? Type { get; set; }
public int? Eid { get; set; }
public string? Name { get; set; }
public string? ResId { get; set; }
public string? UserName { get; set; }
public DateTime? InitConnectStartTime { get; set; }
public DateTime? InitConnectEndTime { get; set; }
}
public class ScreenRecordResponse
{
public int? Id { get; set; }
public int? MasterEid { get; set; }
public string? MasterEidStr { get; set; }
public string? MasterResId { get; set; }
public string? MasterUmid { get; set; }
public string? MasterName { get; set; }
public string? MasterUserName { get; set; }
public int? SlaveEid { get; set; }
public string? SlaveEidStr { get; set; }
public string? SlaveResId { get; set; }
public string? SlaveUmid { get; set; }
public string? SlaveName { get; set; }
public string? SlaveUserName { get; set; }
public DateTime? InitConnectTime { get; set; }
public DateTime? RealStartTime { get; set; }
public DateTime? RealEndTime { get; set; }
public string? RealLongTime { get; set; }
public string? AppId { get; set; }
public string? FileUrl { get; set; }
}
}