using Infrastructure.Application; using System.ComponentModel; using System.ComponentModel.DataAnnotations; namespace Application.Models { [Display(Name = "回放")] public class EditLiveRecordModel : EditModel { [Display(Name = "设备编号")] [ReadOnly(true)] public string DeviceNumber { get; set; } [Display(Name = "设备名称")] [ReadOnly(true)] public string DeviceName { get; set; } [Display(Name = "名称")] public string Name { get; set; } [Display(Name = "文件")] [ReadOnly(true)] public string Value { get; set; } } }