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.

14 lines
382 B

using Infrastructure.Domain;
using System.ComponentModel.DataAnnotations;
namespace Application.Domain.Entities
{
[Display(Name = "回放")]
public class LiveRecord : BaseEntity
{
public string DeviceNumber { get; set; }
public string DeviceName { get; set; }
public string Name { get; set; }
public string Value { get; set; }
}
}