using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace XImagingXhandler.XDAL
{
public class MethodTakePhoto
{
public string isrun { get; set; }
public string status { get; set; }
public string name { get; set; }
public string label { get; set; }
public string strIndex { get; set; }
///
/// 1:手动传参;2:自动传参
///
public int ismanualconfig { get; set; } = 2;
public string bacteriaids { get; set; } = "";
public string paramfilepath { get; set; } = "";
///
/// 两个菌落之间的最小间距
///
public string gapValue { get; set; } = "0";
///
/// 培养基颜色文字
///
public string colorText { get; set; } = "";
///
/// 培养基颜色Id
///
public string colorValue { get; set; } = "";
///
/// 识别方法:0:成像系统自动挑选菌落; 1:人工挑选菌落
///
public int identification { get; set; } = 1;
///
/// 涂布接种次数:1:1次;2:2次
///
public int choiceTimes { get; set; } = 1;
/////
///// 皿码
/////
//public string barcode { get; set; } = "";
///
/// 涂布耗材名称文本
///
public string coatingLabwareText { get; set; } = "";
///
/// 涂布耗材名称Id
///
public string coatingLabwareValue { get; set; } = "";
}
///
/// 识别方法枚举
///
public enum IdentificationEnum
{
///
/// 全部
///
[Description("全部")]
None = -1,
///
/// 自动
///
[Description("自动")]
Auto = 0,
///
/// 人工
///
[Description("人工")]
Manual = 1
}
}