EquipmentProp.cs
573 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HHECS.Model
{
public class EquipmentProp : BaseModel
{
public int ServerHanle { get; set; }
public string Address { get; set; }
public string Value { get; set; }
public string Remark { get; set; }
//逻辑外键
public int EquipmentId { get; set; }
public int EquipmentTypePropTemplatedId { get; set; }
public string EquipmentTypePropTemplateCode { get; set; }
}
}