唐召明
authored
|
1
2
3
4
5
6
|
using FreeSql.DataAnnotations;
using HHECS.EquipmentModel;
namespace HHECS.DAQClient.Model
{
[Table(Name = nameof(EquipmentType))]
|
唐召明
authored
|
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; }
}
}
|