using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataEntity { /// /// 菌落挑选结果实体类 /// public class BacteriaChoiceResultData { /// /// 主key /// public string result_id { get; set; } /// /// 序号 1,2,3... /// public int index { get; set; } /// /// 挑菌结果图片路径 /// public string result_pic { get; set; } /// /// 平皿码 /// public string barcode { get; set; } /// /// 成像时间 /// public string capture_time { get; set; } /// /// 识别菌落数 /// public int identify_bacteria_count { get; set; } /// /// 挑选方式: 0自动 1人工 /// public string choice_mode { get; set; } public string choice_mode_name { get; set; } /// /// 挑选菌落数 /// public int choice_bacteria_count { get; set; } /// /// 挑选的json文件路径 /// public string pick_json_filepath { get; set; } /// /// 菌落name /// public string bacteria_name { get; set; } /// /// color name /// public string bacteria_color_name { get; set; } /// /// 边缘name /// public string bacteria_edge_name { get; set; } /// /// 形状name /// public string bacteria_shape_name { get; set; } /// /// 近似度 /// public string proximity { get; set; } /// /// 最大直径 /// public string maxDiameter { get; set; } /// /// 最小直径 /// public string minDiameter { get; set; } } }