EquipmentTypeExtend.cs 393 Bytes
using FreeSql.DataAnnotations;
using HHECS.EquipmentModel;

namespace HHECS.DAQServer.Models
{
    [Table(Name = "daq_equipment_type", DisableSyncStructure = true)]
    [Index($"uk_{nameof(Code)}", $"{nameof(Code)}", true)]
    public class EquipmentTypeExtend : EquipmentType
    {
        public new List<EquipmentTypePropTemplateExtend> EquipmentTypePropTemplates { get; set; }

    }
}