Blame view

HHECS.DAQClient/Model/EquipmentTypeExtend.cs 388 Bytes
唐召明 authored
1
2
3
4
5
6
using FreeSql.DataAnnotations;
using HHECS.EquipmentModel;

namespace HHECS.DAQClient.Model
{
    [Table(Name = nameof(EquipmentType))]
7
    [Index($"idx_{nameof(EquipmentType)}_{nameof(Code)}", $"{nameof(Code)}", true)]
唐召明 authored
8
9
10
11
12
    public class EquipmentTypeExtend : EquipmentType
    {
        public new List<EquipmentTypePropTemplateExtend> EquipmentTypePropTemplates { get; set; }
    }
}