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.

16 lines
436 B

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