using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace InSituLaboratory.Entities
{
///
/// 设备表
///
public class SysDevice
{
///
/// ID
///
[Key]
public int Id { get; set; }
///
/// 设备代码
///
public string? DeviceType { get; set; }
///
/// 设备名称
///
public string? DeviceName { get; set; }
///
/// 工作时长
///
public string? WorkTime { get; set; }
///
/// 最小工作时长
///
public string? MinWorkTime { get; set; }
}
}