using DataEntity;
using DataEntity.Device;
using DataEntity.Sockets.TakePhoto;
using DataRWDAL.Base;
using HxEnum;
using MySql.Data.MySqlClient;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Data;
using System.Reflection;
using XCommon.Log;
using XCommon.MySql;
using XImagingXhandler.XDAL;
namespace DataRWDAL
{
///
/// 实验运行日志库表操作类
///
public class ExperimentRunLogDB:BaseDB
{
#region 添加一条新的实验运行——通过实验运行数据
///
/// 添加一条新的实验运行——通过实验运行数据
///
///
///
public static int AddExperimentRunLogIntodb(ExperimentRunLog experimentRunLog)
{
using (var db = GetInstance())
{
return db.Insertable(experimentRunLog).ExecuteCommand();
}
}
#endregion
}
}