You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
645 B
25 lines
645 B
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; }
|
|
}
|
|
} |