2024-04-09 08:17:44 +00:00
|
|
|
|
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; }
|
|
|
|
|
|
|
2024-04-10 09:50:54 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 工作时长
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string? WorkTime { get; set; }
|
|
|
|
|
|
|
2024-04-09 08:17:44 +00:00
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|