EquipmentTypeExtend.cs
364 Bytes
using FreeSql.DataAnnotations;
using HHECS.EquipmentModel;
namespace HHECS.DAQShared.Models
{
[Table(Name = "daq_equipment_type")]
[Index($"uk_{nameof(Code)}", $"{nameof(Code)}", true)]
public class EquipmentTypeExtend : EquipmentType
{
public new List<EquipmentTypePropTemplateExtend> EquipmentTypePropTemplates { get; set; }
}
}