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.
iot/projects/Application/Domain/Entities/IoT/LiveRecord.cs

16 lines
420 B

using Infrastructure.Domain;
using System.ComponentModel.DataAnnotations;
namespace Application.Domain.Entities
{
[Display(Name = "录像",Order =40)]
[Scope]
[IoTModule]
public class LiveRecord : BaseEntity
{
public string DeviceNumber { get; set; }
public string DeviceName { get; set; }
public string Name { get; set; }
public string Value { get; set; }
}
}