20230201_145_upperpc/InSituLaboratory.Entities/SysDevice.cs
2024-04-09 16:17:44 +08:00

34 lines
650 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace InSituLaboratory.Entities
{
/// <summary>
/// 设备表
/// </summary>
public class SysDevice
{
/// <summary>
/// ID
/// </summary>
[Key]
public int Id { get; set; }
/// <summary>
/// 设备代码
/// </summary>
public string? DeviceType { get; set; }
/// <summary>
/// 设备名称
/// </summary>
public string? DeviceName { get; set; }
}
}