DockTool/examImageParaModel.cs
2024-12-12 14:09:48 +08:00

17 lines
452 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace FlyDockTool
{
public class examImageParaModel
{
public string machineCode { get; set; }//设备型号
public string machineID { get; set; }//设备id
public string testDate { get; set; }//检验时间
public string sampleNo { get; set; }// 样本号
public string img { get; set; }//图片文件
}
}