TG.WXCRM.V4/Model/DTO/ScreenRecordDto.cs

42 lines
1.4 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WX.CRM.Model.DTO
{
public class ScreenRecordRequest
{
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; }
}
}