30 lines
721 B
C#
30 lines
721 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Domain.Dto
|
|
{
|
|
public class UserInfoDto
|
|
{
|
|
public string? Resid { get; set; }
|
|
}
|
|
|
|
|
|
public class CompanyBussiness
|
|
{
|
|
public string[] soft { get; set; }
|
|
public string[] xinmeiti { get; set; }
|
|
public int? ProtectTime { get; set; } = 14;
|
|
public decimal limitPrice { get; set; }
|
|
}
|
|
|
|
public class ScreenRecordFile
|
|
{
|
|
public string MasterDeviceCode { get; set; }
|
|
public string SlaveDeviceCode { get; set; }
|
|
public DateTime? InitConnectTime { get; set; }
|
|
public string FileUrl { get; set; }
|
|
}
|
|
} |