2024-03-13 00:46:26 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
2024-05-08 10:01:39 +00:00
|
|
|
|
namespace InSituLaboratory.Entities.SysData
|
2024-03-13 00:46:26 +00:00
|
|
|
|
{
|
2024-05-08 10:01:39 +00:00
|
|
|
|
public class BaseCavity
|
2024-03-13 00:46:26 +00:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 记录时间
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public DateTime RecordTime { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 腔体识别码
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public int CavityPIN { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|