23 lines
482 B
C#
23 lines
482 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
|
|
{
|
|
public class BaseCavity
|
|
{
|
|
/// <summary>
|
|
/// 记录时间
|
|
/// </summary>
|
|
public DateTime RecordTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 腔体识别码
|
|
/// </summary>
|
|
public int CavityPIN { get; set; }
|
|
}
|
|
}
|