调试修改和bug修复
This commit is contained in:
parent
ceea212db0
commit
afc628189c
|
@ -155,7 +155,7 @@
|
|||
</site>
|
||||
<site name="LonglslandExhibitionCenter" id="2">
|
||||
<application path="/" applicationPool="Clr4IntegratedAppPool">
|
||||
<virtualDirectory path="/" physicalPath="F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter" />
|
||||
<virtualDirectory path="/" physicalPath="E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter" />
|
||||
</application>
|
||||
<bindings>
|
||||
<binding protocol="http" bindingInformation="*:15586:localhost" />
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -21,147 +21,147 @@ using Maticsoft.Common;
|
|||
using DataService.Model;
|
||||
namespace DataService.BLL
|
||||
{
|
||||
/// <summary>
|
||||
/// device_info
|
||||
/// </summary>
|
||||
public partial class device_info
|
||||
{
|
||||
private readonly DataService.DAL.device_info dal=new DataService.DAL.device_info();
|
||||
public device_info()
|
||||
{}
|
||||
#region BasicMethod
|
||||
/// <summary>
|
||||
/// 是否存在该记录
|
||||
/// </summary>
|
||||
public bool Exists(string DeviceId)
|
||||
{
|
||||
return dal.Exists(DeviceId);
|
||||
}
|
||||
/// <summary>
|
||||
/// device_info
|
||||
/// </summary>
|
||||
public partial class device_info
|
||||
{
|
||||
private readonly DataService.DAL.device_info dal = new DataService.DAL.device_info();
|
||||
public device_info()
|
||||
{ }
|
||||
#region BasicMethod
|
||||
/// <summary>
|
||||
/// 是否存在该记录
|
||||
/// </summary>
|
||||
public bool Exists(string DeviceId)
|
||||
{
|
||||
return dal.Exists(DeviceId);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 增加一条数据
|
||||
/// </summary>
|
||||
public bool Add(DataService.Model.device_info model)
|
||||
{
|
||||
return dal.Add(model);
|
||||
}
|
||||
/// <summary>
|
||||
/// 增加一条数据
|
||||
/// </summary>
|
||||
public bool Add(DataService.Model.device_info model)
|
||||
{
|
||||
return dal.Add(model);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 更新一条数据
|
||||
/// </summary>
|
||||
public bool Update(DataService.Model.device_info model)
|
||||
{
|
||||
return dal.Update(model);
|
||||
}
|
||||
/// <summary>
|
||||
/// 更新一条数据
|
||||
/// </summary>
|
||||
public bool Update(DataService.Model.device_info model)
|
||||
{
|
||||
return dal.Update(model);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 删除一条数据
|
||||
/// </summary>
|
||||
public bool Delete(string DeviceId)
|
||||
{
|
||||
|
||||
return dal.Delete(DeviceId);
|
||||
}
|
||||
/// <summary>
|
||||
/// 删除一条数据
|
||||
/// </summary>
|
||||
public bool DeleteList(string DeviceIdlist )
|
||||
{
|
||||
return dal.DeleteList(DeviceIdlist );
|
||||
}
|
||||
/// <summary>
|
||||
/// 删除一条数据
|
||||
/// </summary>
|
||||
public bool Delete(string DeviceId)
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 得到一个对象实体
|
||||
/// </summary>
|
||||
public DataService.Model.device_info GetModel(string DeviceId)
|
||||
{
|
||||
|
||||
return dal.GetModel(DeviceId);
|
||||
}
|
||||
return dal.Delete(DeviceId);
|
||||
}
|
||||
/// <summary>
|
||||
/// 删除一条数据
|
||||
/// </summary>
|
||||
public bool DeleteList(string DeviceIdlist)
|
||||
{
|
||||
return dal.DeleteList(DeviceIdlist);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 得到一个对象实体,从缓存中
|
||||
/// </summary>
|
||||
public DataService.Model.device_info GetModelByCache(string DeviceId)
|
||||
{
|
||||
|
||||
string CacheKey = "device_infoModel-" + DeviceId;
|
||||
object objModel = Maticsoft.Common.DataCache.GetCache(CacheKey);
|
||||
if (objModel == null)
|
||||
{
|
||||
try
|
||||
{
|
||||
objModel = dal.GetModel(DeviceId);
|
||||
if (objModel != null)
|
||||
{
|
||||
int ModelCache = Maticsoft.Common.ConfigHelper.GetConfigInt("ModelCache");
|
||||
Maticsoft.Common.DataCache.SetCache(CacheKey, objModel, DateTime.Now.AddMinutes(ModelCache), TimeSpan.Zero);
|
||||
}
|
||||
}
|
||||
catch{}
|
||||
}
|
||||
return (DataService.Model.device_info)objModel;
|
||||
}
|
||||
/// <summary>
|
||||
/// 得到一个对象实体
|
||||
/// </summary>
|
||||
public DataService.Model.device_info GetModel(string DeviceId)
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 获得数据列表
|
||||
/// </summary>
|
||||
public DataSet GetList(string strWhere)
|
||||
{
|
||||
return dal.GetList(strWhere);
|
||||
}
|
||||
/// <summary>
|
||||
/// 获得数据列表
|
||||
/// </summary>
|
||||
public List<DataService.Model.device_info> GetModelList(string strWhere)
|
||||
{
|
||||
DataSet ds = dal.GetList(strWhere);
|
||||
return DataTableToList(ds.Tables[0]);
|
||||
}
|
||||
/// <summary>
|
||||
/// 获得数据列表
|
||||
/// </summary>
|
||||
public List<DataService.Model.device_info> DataTableToList(DataTable dt)
|
||||
{
|
||||
List<DataService.Model.device_info> modelList = new List<DataService.Model.device_info>();
|
||||
int rowsCount = dt.Rows.Count;
|
||||
if (rowsCount > 0)
|
||||
{
|
||||
DataService.Model.device_info model;
|
||||
for (int n = 0; n < rowsCount; n++)
|
||||
{
|
||||
model = dal.DataRowToModel(dt.Rows[n]);
|
||||
if (model != null)
|
||||
{
|
||||
modelList.Add(model);
|
||||
}
|
||||
}
|
||||
}
|
||||
return modelList;
|
||||
}
|
||||
return dal.GetModel(DeviceId);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获得数据列表
|
||||
/// </summary>
|
||||
public DataSet GetAllList()
|
||||
{
|
||||
return GetList("");
|
||||
}
|
||||
/// <summary>
|
||||
/// 得到一个对象实体,从缓存中
|
||||
/// </summary>
|
||||
public DataService.Model.device_info GetModelByCache(string DeviceId)
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 分页获取数据列表
|
||||
/// </summary>
|
||||
public int GetRecordCount(string strWhere)
|
||||
{
|
||||
return dal.GetRecordCount(strWhere);
|
||||
}
|
||||
/// <summary>
|
||||
/// 分页获取数据列表
|
||||
/// </summary>
|
||||
public DataSet GetListByPage(string strWhere, string orderby, int startIndex, int endIndex)
|
||||
{
|
||||
return dal.GetListByPage( strWhere, orderby, startIndex, endIndex);
|
||||
}
|
||||
string CacheKey = "device_infoModel-" + DeviceId;
|
||||
object objModel = Maticsoft.Common.DataCache.GetCache(CacheKey);
|
||||
if (objModel == null)
|
||||
{
|
||||
try
|
||||
{
|
||||
objModel = dal.GetModel(DeviceId);
|
||||
if (objModel != null)
|
||||
{
|
||||
int ModelCache = Maticsoft.Common.ConfigHelper.GetConfigInt("ModelCache");
|
||||
Maticsoft.Common.DataCache.SetCache(CacheKey, objModel, DateTime.Now.AddMinutes(ModelCache), TimeSpan.Zero);
|
||||
}
|
||||
}
|
||||
catch { }
|
||||
}
|
||||
return (DataService.Model.device_info)objModel;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获得数据列表
|
||||
/// </summary>
|
||||
public DataSet GetList(string strWhere)
|
||||
{
|
||||
return dal.GetList(strWhere);
|
||||
}
|
||||
/// <summary>
|
||||
/// 获得数据列表
|
||||
/// </summary>
|
||||
public List<DataService.Model.device_info> GetModelList(string strWhere)
|
||||
{
|
||||
DataSet ds = dal.GetList(strWhere);
|
||||
return DataTableToList(ds.Tables[0]);
|
||||
}
|
||||
/// <summary>
|
||||
/// 获得数据列表
|
||||
/// </summary>
|
||||
public List<DataService.Model.device_info> DataTableToList(DataTable dt)
|
||||
{
|
||||
List<DataService.Model.device_info> modelList = new List<DataService.Model.device_info>();
|
||||
int rowsCount = dt.Rows.Count;
|
||||
if (rowsCount > 0)
|
||||
{
|
||||
DataService.Model.device_info model;
|
||||
for (int n = 0; n < rowsCount; n++)
|
||||
{
|
||||
model = dal.DataRowToModel(dt.Rows[n]);
|
||||
if (model != null)
|
||||
{
|
||||
modelList.Add(model);
|
||||
}
|
||||
}
|
||||
}
|
||||
return modelList;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获得数据列表
|
||||
/// </summary>
|
||||
public DataSet GetAllList()
|
||||
{
|
||||
return GetList("");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 分页获取数据列表
|
||||
/// </summary>
|
||||
public int GetRecordCount(string strWhere)
|
||||
{
|
||||
return dal.GetRecordCount(strWhere);
|
||||
}
|
||||
/// <summary>
|
||||
/// 分页获取数据列表
|
||||
/// </summary>
|
||||
public DataSet GetListByPage(string strWhere, string orderby, int startIndex, int endIndex)
|
||||
{
|
||||
return dal.GetListByPage(strWhere, orderby, startIndex, endIndex);
|
||||
}
|
||||
/// <summary>
|
||||
/// 分页获取数据列表
|
||||
/// </summary>
|
||||
|
@ -176,9 +176,9 @@ namespace DataService.BLL
|
|||
#endregion ExtensionMethod
|
||||
#region ExtensionMethod
|
||||
//批量排除
|
||||
public List<DataService.Model.device_info> GetModelLists(List<string> strWhere)
|
||||
public List<DataService.Model.device_info> GetModelLists(List<string> strWhere, string FloorName)
|
||||
{
|
||||
DataSet ds = dal.GetLists(strWhere);
|
||||
DataSet ds = dal.GetLists(strWhere, FloorName);
|
||||
return DataTableToList(ds.Tables[0]);
|
||||
}
|
||||
#endregion ExtensionMethod
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
*
|
||||
* Ver 变更日期 负责人 变更内容
|
||||
* ───────────────────────────────────
|
||||
* V0.01 2024/2/23 17:25:32 N/A 初版
|
||||
* V0.01 2024/8/8 13:08:23 N/A 初版
|
||||
*
|
||||
* Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
|
||||
*┌──────────────────────────────────┐
|
||||
|
@ -21,159 +21,159 @@ using Maticsoft.Common;
|
|||
using DataService.Model;
|
||||
namespace DataService.BLL
|
||||
{
|
||||
/// <summary>
|
||||
/// lighting_info
|
||||
/// </summary>
|
||||
public partial class lighting_info
|
||||
{
|
||||
private readonly DataService.DAL.lighting_info dal=new DataService.DAL.lighting_info();
|
||||
public lighting_info()
|
||||
{}
|
||||
#region BasicMethod
|
||||
/// <summary>
|
||||
/// 是否存在该记录
|
||||
/// </summary>
|
||||
public bool Exists(string LightingId)
|
||||
{
|
||||
return dal.Exists(LightingId);
|
||||
}
|
||||
/// <summary>
|
||||
/// lighting_info
|
||||
/// </summary>
|
||||
public partial class lighting_info
|
||||
{
|
||||
private readonly DataService.DAL.lighting_info dal = new DataService.DAL.lighting_info();
|
||||
public lighting_info()
|
||||
{ }
|
||||
#region BasicMethod
|
||||
/// <summary>
|
||||
/// 是否存在该记录
|
||||
/// </summary>
|
||||
public bool Exists(string LightingId)
|
||||
{
|
||||
return dal.Exists(LightingId);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 增加一条数据
|
||||
/// </summary>
|
||||
public bool Add(DataService.Model.lighting_info model)
|
||||
{
|
||||
return dal.Add(model);
|
||||
}
|
||||
/// <summary>
|
||||
/// 增加一条数据
|
||||
/// </summary>
|
||||
public bool Add(DataService.Model.lighting_info model)
|
||||
{
|
||||
return dal.Add(model);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 更新一条数据
|
||||
/// </summary>
|
||||
public bool Update(DataService.Model.lighting_info model)
|
||||
{
|
||||
return dal.Update(model);
|
||||
}
|
||||
/// <summary>
|
||||
/// 更新一条数据
|
||||
/// </summary>
|
||||
public bool Update(DataService.Model.lighting_info model)
|
||||
{
|
||||
return dal.Update(model);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 删除一条数据
|
||||
/// </summary>
|
||||
public bool Delete(string LightingId)
|
||||
{
|
||||
|
||||
return dal.Delete(LightingId);
|
||||
}
|
||||
/// <summary>
|
||||
/// 删除一条数据
|
||||
/// </summary>
|
||||
public bool DeleteList(string LightingIdlist )
|
||||
{
|
||||
return dal.DeleteList(LightingIdlist );
|
||||
}
|
||||
/// <summary>
|
||||
/// 删除一条数据
|
||||
/// </summary>
|
||||
public bool Delete(string LightingId)
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 得到一个对象实体
|
||||
/// </summary>
|
||||
public DataService.Model.lighting_info GetModel(string LightingId)
|
||||
{
|
||||
|
||||
return dal.GetModel(LightingId);
|
||||
}
|
||||
return dal.Delete(LightingId);
|
||||
}
|
||||
/// <summary>
|
||||
/// 删除一条数据
|
||||
/// </summary>
|
||||
public bool DeleteList(string LightingIdlist)
|
||||
{
|
||||
return dal.DeleteList(LightingIdlist);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 得到一个对象实体,从缓存中
|
||||
/// </summary>
|
||||
public DataService.Model.lighting_info GetModelByCache(string LightingId)
|
||||
{
|
||||
|
||||
string CacheKey = "lighting_infoModel-" + LightingId;
|
||||
object objModel = Maticsoft.Common.DataCache.GetCache(CacheKey);
|
||||
if (objModel == null)
|
||||
{
|
||||
try
|
||||
{
|
||||
objModel = dal.GetModel(LightingId);
|
||||
if (objModel != null)
|
||||
{
|
||||
int ModelCache = Maticsoft.Common.ConfigHelper.GetConfigInt("ModelCache");
|
||||
Maticsoft.Common.DataCache.SetCache(CacheKey, objModel, DateTime.Now.AddMinutes(ModelCache), TimeSpan.Zero);
|
||||
}
|
||||
}
|
||||
catch{}
|
||||
}
|
||||
return (DataService.Model.lighting_info)objModel;
|
||||
}
|
||||
/// <summary>
|
||||
/// 得到一个对象实体
|
||||
/// </summary>
|
||||
public DataService.Model.lighting_info GetModel(string LightingId)
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 获得数据列表
|
||||
/// </summary>
|
||||
public DataSet GetList(string strWhere)
|
||||
{
|
||||
return dal.GetList(strWhere);
|
||||
}
|
||||
/// <summary>
|
||||
/// 获得数据列表
|
||||
/// </summary>
|
||||
public List<DataService.Model.lighting_info> GetModelList(string strWhere)
|
||||
{
|
||||
DataSet ds = dal.GetList(strWhere);
|
||||
return DataTableToList(ds.Tables[0]);
|
||||
}
|
||||
/// <summary>
|
||||
/// 获得数据列表
|
||||
/// </summary>
|
||||
public List<DataService.Model.lighting_info> DataTableToList(DataTable dt)
|
||||
{
|
||||
List<DataService.Model.lighting_info> modelList = new List<DataService.Model.lighting_info>();
|
||||
int rowsCount = dt.Rows.Count;
|
||||
if (rowsCount > 0)
|
||||
{
|
||||
DataService.Model.lighting_info model;
|
||||
for (int n = 0; n < rowsCount; n++)
|
||||
{
|
||||
model = dal.DataRowToModel(dt.Rows[n]);
|
||||
if (model != null)
|
||||
{
|
||||
modelList.Add(model);
|
||||
}
|
||||
}
|
||||
}
|
||||
return modelList;
|
||||
}
|
||||
return dal.GetModel(LightingId);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获得数据列表
|
||||
/// </summary>
|
||||
public DataSet GetAllList()
|
||||
{
|
||||
return GetList("");
|
||||
}
|
||||
/// <summary>
|
||||
/// 得到一个对象实体,从缓存中
|
||||
/// </summary>
|
||||
public DataService.Model.lighting_info GetModelByCache(string LightingId)
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 分页获取数据列表
|
||||
/// </summary>
|
||||
public int GetRecordCount(string strWhere)
|
||||
{
|
||||
return dal.GetRecordCount(strWhere);
|
||||
}
|
||||
/// <summary>
|
||||
/// 分页获取数据列表
|
||||
/// </summary>
|
||||
public DataSet GetListByPage(string strWhere, string orderby, int startIndex, int endIndex)
|
||||
{
|
||||
return dal.GetListByPage( strWhere, orderby, startIndex, endIndex);
|
||||
}
|
||||
/// <summary>
|
||||
/// 分页获取数据列表
|
||||
/// </summary>
|
||||
//public DataSet GetList(int PageSize,int PageIndex,string strWhere)
|
||||
//{
|
||||
//return dal.GetList(PageSize,PageIndex,strWhere);
|
||||
//}
|
||||
string CacheKey = "lighting_infoModel-" + LightingId;
|
||||
object objModel = Maticsoft.Common.DataCache.GetCache(CacheKey);
|
||||
if (objModel == null)
|
||||
{
|
||||
try
|
||||
{
|
||||
objModel = dal.GetModel(LightingId);
|
||||
if (objModel != null)
|
||||
{
|
||||
int ModelCache = Maticsoft.Common.ConfigHelper.GetConfigInt("ModelCache");
|
||||
Maticsoft.Common.DataCache.SetCache(CacheKey, objModel, DateTime.Now.AddMinutes(ModelCache), TimeSpan.Zero);
|
||||
}
|
||||
}
|
||||
catch { }
|
||||
}
|
||||
return (DataService.Model.lighting_info)objModel;
|
||||
}
|
||||
|
||||
#endregion BasicMethod
|
||||
#region ExtensionMethod
|
||||
/// <summary>
|
||||
/// 获得数据列表
|
||||
/// </summary>
|
||||
public DataSet GetList(string strWhere)
|
||||
{
|
||||
return dal.GetList(strWhere);
|
||||
}
|
||||
/// <summary>
|
||||
/// 获得数据列表
|
||||
/// </summary>
|
||||
public List<DataService.Model.lighting_info> GetModelList(string strWhere)
|
||||
{
|
||||
DataSet ds = dal.GetList(strWhere);
|
||||
return DataTableToList(ds.Tables[0]);
|
||||
}
|
||||
/// <summary>
|
||||
/// 获得数据列表
|
||||
/// </summary>
|
||||
public List<DataService.Model.lighting_info> DataTableToList(DataTable dt)
|
||||
{
|
||||
List<DataService.Model.lighting_info> modelList = new List<DataService.Model.lighting_info>();
|
||||
int rowsCount = dt.Rows.Count;
|
||||
if (rowsCount > 0)
|
||||
{
|
||||
DataService.Model.lighting_info model;
|
||||
for (int n = 0; n < rowsCount; n++)
|
||||
{
|
||||
model = dal.DataRowToModel(dt.Rows[n]);
|
||||
if (model != null)
|
||||
{
|
||||
modelList.Add(model);
|
||||
}
|
||||
}
|
||||
}
|
||||
return modelList;
|
||||
}
|
||||
|
||||
#endregion ExtensionMethod
|
||||
}
|
||||
/// <summary>
|
||||
/// 获得数据列表
|
||||
/// </summary>
|
||||
public DataSet GetAllList()
|
||||
{
|
||||
return GetList("");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 分页获取数据列表
|
||||
/// </summary>
|
||||
public int GetRecordCount(string strWhere)
|
||||
{
|
||||
return dal.GetRecordCount(strWhere);
|
||||
}
|
||||
/// <summary>
|
||||
/// 分页获取数据列表
|
||||
/// </summary>
|
||||
public DataSet GetListByPage(string strWhere, string orderby, int startIndex, int endIndex)
|
||||
{
|
||||
return dal.GetListByPage(strWhere, orderby, startIndex, endIndex);
|
||||
}
|
||||
/// <summary>
|
||||
/// 分页获取数据列表
|
||||
/// </summary>
|
||||
//public DataSet GetList(int PageSize,int PageIndex,string strWhere)
|
||||
//{
|
||||
//return dal.GetList(PageSize,PageIndex,strWhere);
|
||||
//}
|
||||
|
||||
#endregion BasicMethod
|
||||
#region ExtensionMethod
|
||||
|
||||
#endregion ExtensionMethod
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -23,287 +23,287 @@ using System.Collections.Generic;
|
|||
|
||||
namespace DataService.DAL
|
||||
{
|
||||
/// <summary>
|
||||
/// 数据访问类:device_info
|
||||
/// </summary>
|
||||
public partial class device_info
|
||||
{
|
||||
public device_info()
|
||||
{}
|
||||
#region BasicMethod
|
||||
/// <summary>
|
||||
/// 数据访问类:device_info
|
||||
/// </summary>
|
||||
public partial class device_info
|
||||
{
|
||||
public device_info()
|
||||
{ }
|
||||
#region BasicMethod
|
||||
|
||||
/// <summary>
|
||||
/// 是否存在该记录
|
||||
/// </summary>
|
||||
public bool Exists(string DeviceId)
|
||||
{
|
||||
StringBuilder strSql=new StringBuilder();
|
||||
strSql.Append("select count(1) from device_info");
|
||||
strSql.Append(" where DeviceId=@DeviceId ");
|
||||
MySqlParameter[] parameters = {
|
||||
new MySqlParameter("@DeviceId", MySqlDbType.VarChar,255) };
|
||||
parameters[0].Value = DeviceId;
|
||||
/// <summary>
|
||||
/// 是否存在该记录
|
||||
/// </summary>
|
||||
public bool Exists(string DeviceId)
|
||||
{
|
||||
StringBuilder strSql = new StringBuilder();
|
||||
strSql.Append("select count(1) from device_info");
|
||||
strSql.Append(" where DeviceId=@DeviceId ");
|
||||
MySqlParameter[] parameters = {
|
||||
new MySqlParameter("@DeviceId", MySqlDbType.VarChar,255) };
|
||||
parameters[0].Value = DeviceId;
|
||||
|
||||
return DbHelperMySQL.Exists(strSql.ToString(),parameters);
|
||||
}
|
||||
return DbHelperMySQL.Exists(strSql.ToString(), parameters);
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 增加一条数据
|
||||
/// </summary>
|
||||
public bool Add(DataService.Model.device_info model)
|
||||
{
|
||||
StringBuilder strSql=new StringBuilder();
|
||||
strSql.Append("insert into device_info(");
|
||||
strSql.Append("DeviceId,FloorName,DeviceName,Reserve1,Reserve2,Reserve3,Reserve4,Reserve5)");
|
||||
strSql.Append(" values (");
|
||||
strSql.Append("@DeviceId,@FloorName,@DeviceName,@Reserve1,@Reserve2,@Reserve3,@Reserve4,@Reserve5)");
|
||||
MySqlParameter[] parameters = {
|
||||
new MySqlParameter("@DeviceId", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@FloorName", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@DeviceName", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve1", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve2", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve3", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve4", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve5", MySqlDbType.VarChar,255)};
|
||||
parameters[0].Value = model.DeviceId;
|
||||
parameters[1].Value = model.FloorName;
|
||||
parameters[2].Value = model.DeviceName;
|
||||
parameters[3].Value = model.Reserve1;
|
||||
parameters[4].Value = model.Reserve2;
|
||||
parameters[5].Value = model.Reserve3;
|
||||
parameters[6].Value = model.Reserve4;
|
||||
parameters[7].Value = model.Reserve5;
|
||||
/// <summary>
|
||||
/// 增加一条数据
|
||||
/// </summary>
|
||||
public bool Add(DataService.Model.device_info model)
|
||||
{
|
||||
StringBuilder strSql = new StringBuilder();
|
||||
strSql.Append("insert into device_info(");
|
||||
strSql.Append("DeviceId,FloorName,DeviceName,Reserve1,Reserve2,Reserve3,Reserve4,Reserve5)");
|
||||
strSql.Append(" values (");
|
||||
strSql.Append("@DeviceId,@FloorName,@DeviceName,@Reserve1,@Reserve2,@Reserve3,@Reserve4,@Reserve5)");
|
||||
MySqlParameter[] parameters = {
|
||||
new MySqlParameter("@DeviceId", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@FloorName", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@DeviceName", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve1", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve2", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve3", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve4", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve5", MySqlDbType.VarChar,255)};
|
||||
parameters[0].Value = model.DeviceId;
|
||||
parameters[1].Value = model.FloorName;
|
||||
parameters[2].Value = model.DeviceName;
|
||||
parameters[3].Value = model.Reserve1;
|
||||
parameters[4].Value = model.Reserve2;
|
||||
parameters[5].Value = model.Reserve3;
|
||||
parameters[6].Value = model.Reserve4;
|
||||
parameters[7].Value = model.Reserve5;
|
||||
|
||||
int rows=DbHelperMySQL.ExecuteSql(strSql.ToString(),parameters);
|
||||
if (rows > 0)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// 更新一条数据
|
||||
/// </summary>
|
||||
public bool Update(DataService.Model.device_info model)
|
||||
{
|
||||
StringBuilder strSql=new StringBuilder();
|
||||
strSql.Append("update device_info set ");
|
||||
strSql.Append("FloorName=@FloorName,");
|
||||
strSql.Append("DeviceName=@DeviceName,");
|
||||
strSql.Append("Reserve1=@Reserve1,");
|
||||
strSql.Append("Reserve2=@Reserve2,");
|
||||
strSql.Append("Reserve3=@Reserve3,");
|
||||
strSql.Append("Reserve4=@Reserve4,");
|
||||
strSql.Append("Reserve5=@Reserve5");
|
||||
strSql.Append(" where DeviceId=@DeviceId ");
|
||||
MySqlParameter[] parameters = {
|
||||
new MySqlParameter("@FloorName", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@DeviceName", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve1", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve2", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve3", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve4", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve5", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@DeviceId", MySqlDbType.VarChar,255)};
|
||||
parameters[0].Value = model.FloorName;
|
||||
parameters[1].Value = model.DeviceName;
|
||||
parameters[2].Value = model.Reserve1;
|
||||
parameters[3].Value = model.Reserve2;
|
||||
parameters[4].Value = model.Reserve3;
|
||||
parameters[5].Value = model.Reserve4;
|
||||
parameters[6].Value = model.Reserve5;
|
||||
parameters[7].Value = model.DeviceId;
|
||||
int rows = DbHelperMySQL.ExecuteSql(strSql.ToString(), parameters);
|
||||
if (rows > 0)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// 更新一条数据
|
||||
/// </summary>
|
||||
public bool Update(DataService.Model.device_info model)
|
||||
{
|
||||
StringBuilder strSql = new StringBuilder();
|
||||
strSql.Append("update device_info set ");
|
||||
strSql.Append("FloorName=@FloorName,");
|
||||
strSql.Append("DeviceName=@DeviceName,");
|
||||
strSql.Append("Reserve1=@Reserve1,");
|
||||
strSql.Append("Reserve2=@Reserve2,");
|
||||
strSql.Append("Reserve3=@Reserve3,");
|
||||
strSql.Append("Reserve4=@Reserve4,");
|
||||
strSql.Append("Reserve5=@Reserve5");
|
||||
strSql.Append(" where DeviceId=@DeviceId ");
|
||||
MySqlParameter[] parameters = {
|
||||
new MySqlParameter("@FloorName", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@DeviceName", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve1", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve2", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve3", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve4", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve5", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@DeviceId", MySqlDbType.VarChar,255)};
|
||||
parameters[0].Value = model.FloorName;
|
||||
parameters[1].Value = model.DeviceName;
|
||||
parameters[2].Value = model.Reserve1;
|
||||
parameters[3].Value = model.Reserve2;
|
||||
parameters[4].Value = model.Reserve3;
|
||||
parameters[5].Value = model.Reserve4;
|
||||
parameters[6].Value = model.Reserve5;
|
||||
parameters[7].Value = model.DeviceId;
|
||||
|
||||
int rows=DbHelperMySQL.ExecuteSql(strSql.ToString(),parameters);
|
||||
if (rows > 0)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
int rows = DbHelperMySQL.ExecuteSql(strSql.ToString(), parameters);
|
||||
if (rows > 0)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 删除一条数据
|
||||
/// </summary>
|
||||
public bool Delete(string DeviceId)
|
||||
{
|
||||
|
||||
StringBuilder strSql=new StringBuilder();
|
||||
strSql.Append("delete from device_info ");
|
||||
strSql.Append(" where DeviceId=@DeviceId ");
|
||||
MySqlParameter[] parameters = {
|
||||
new MySqlParameter("@DeviceId", MySqlDbType.VarChar,255) };
|
||||
parameters[0].Value = DeviceId;
|
||||
/// <summary>
|
||||
/// 删除一条数据
|
||||
/// </summary>
|
||||
public bool Delete(string DeviceId)
|
||||
{
|
||||
|
||||
int rows=DbHelperMySQL.ExecuteSql(strSql.ToString(),parameters);
|
||||
if (rows > 0)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// 批量删除数据
|
||||
/// </summary>
|
||||
public bool DeleteList(string DeviceIdlist )
|
||||
{
|
||||
StringBuilder strSql=new StringBuilder();
|
||||
strSql.Append("delete from device_info ");
|
||||
strSql.Append(" where DeviceId in ("+DeviceIdlist + ") ");
|
||||
int rows=DbHelperMySQL.ExecuteSql(strSql.ToString());
|
||||
if (rows > 0)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
StringBuilder strSql = new StringBuilder();
|
||||
strSql.Append("delete from device_info ");
|
||||
strSql.Append(" where DeviceId=@DeviceId ");
|
||||
MySqlParameter[] parameters = {
|
||||
new MySqlParameter("@DeviceId", MySqlDbType.VarChar,255) };
|
||||
parameters[0].Value = DeviceId;
|
||||
|
||||
int rows = DbHelperMySQL.ExecuteSql(strSql.ToString(), parameters);
|
||||
if (rows > 0)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// 批量删除数据
|
||||
/// </summary>
|
||||
public bool DeleteList(string DeviceIdlist)
|
||||
{
|
||||
StringBuilder strSql = new StringBuilder();
|
||||
strSql.Append("delete from device_info ");
|
||||
strSql.Append(" where DeviceId in (" + DeviceIdlist + ") ");
|
||||
int rows = DbHelperMySQL.ExecuteSql(strSql.ToString());
|
||||
if (rows > 0)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 得到一个对象实体
|
||||
/// </summary>
|
||||
public DataService.Model.device_info GetModel(string DeviceId)
|
||||
{
|
||||
|
||||
StringBuilder strSql=new StringBuilder();
|
||||
strSql.Append("select DeviceId,FloorName,DeviceName,Reserve1,Reserve2,Reserve3,Reserve4,Reserve5 from device_info ");
|
||||
strSql.Append(" where DeviceId=@DeviceId ");
|
||||
MySqlParameter[] parameters = {
|
||||
new MySqlParameter("@DeviceId", MySqlDbType.VarChar,255) };
|
||||
parameters[0].Value = DeviceId;
|
||||
/// <summary>
|
||||
/// 得到一个对象实体
|
||||
/// </summary>
|
||||
public DataService.Model.device_info GetModel(string DeviceId)
|
||||
{
|
||||
|
||||
DataService.Model.device_info model=new DataService.Model.device_info();
|
||||
DataSet ds=DbHelperMySQL.Query(strSql.ToString(),parameters);
|
||||
if(ds.Tables[0].Rows.Count>0)
|
||||
{
|
||||
return DataRowToModel(ds.Tables[0].Rows[0]);
|
||||
}
|
||||
else
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
StringBuilder strSql = new StringBuilder();
|
||||
strSql.Append("select DeviceId,FloorName,DeviceName,Reserve1,Reserve2,Reserve3,Reserve4,Reserve5 from device_info ");
|
||||
strSql.Append(" where DeviceId=@DeviceId ");
|
||||
MySqlParameter[] parameters = {
|
||||
new MySqlParameter("@DeviceId", MySqlDbType.VarChar,255) };
|
||||
parameters[0].Value = DeviceId;
|
||||
|
||||
DataService.Model.device_info model = new DataService.Model.device_info();
|
||||
DataSet ds = DbHelperMySQL.Query(strSql.ToString(), parameters);
|
||||
if (ds.Tables[0].Rows.Count > 0)
|
||||
{
|
||||
return DataRowToModel(ds.Tables[0].Rows[0]);
|
||||
}
|
||||
else
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 得到一个对象实体
|
||||
/// </summary>
|
||||
public DataService.Model.device_info DataRowToModel(DataRow row)
|
||||
{
|
||||
DataService.Model.device_info model=new DataService.Model.device_info();
|
||||
if (row != null)
|
||||
{
|
||||
if(row["DeviceId"]!=null)
|
||||
{
|
||||
model.DeviceId=row["DeviceId"].ToString();
|
||||
}
|
||||
if(row["FloorName"]!=null)
|
||||
{
|
||||
model.FloorName=row["FloorName"].ToString();
|
||||
}
|
||||
if(row["DeviceName"]!=null)
|
||||
{
|
||||
model.DeviceName=row["DeviceName"].ToString();
|
||||
}
|
||||
if(row["Reserve1"]!=null)
|
||||
{
|
||||
model.Reserve1=row["Reserve1"].ToString();
|
||||
}
|
||||
if(row["Reserve2"]!=null)
|
||||
{
|
||||
model.Reserve2=row["Reserve2"].ToString();
|
||||
}
|
||||
if(row["Reserve3"]!=null)
|
||||
{
|
||||
model.Reserve3=row["Reserve3"].ToString();
|
||||
}
|
||||
if(row["Reserve4"]!=null)
|
||||
{
|
||||
model.Reserve4=row["Reserve4"].ToString();
|
||||
}
|
||||
if(row["Reserve5"]!=null)
|
||||
{
|
||||
model.Reserve5=row["Reserve5"].ToString();
|
||||
}
|
||||
}
|
||||
return model;
|
||||
}
|
||||
/// <summary>
|
||||
/// 得到一个对象实体
|
||||
/// </summary>
|
||||
public DataService.Model.device_info DataRowToModel(DataRow row)
|
||||
{
|
||||
DataService.Model.device_info model = new DataService.Model.device_info();
|
||||
if (row != null)
|
||||
{
|
||||
if (row["DeviceId"] != null)
|
||||
{
|
||||
model.DeviceId = row["DeviceId"].ToString();
|
||||
}
|
||||
if (row["FloorName"] != null)
|
||||
{
|
||||
model.FloorName = row["FloorName"].ToString();
|
||||
}
|
||||
if (row["DeviceName"] != null)
|
||||
{
|
||||
model.DeviceName = row["DeviceName"].ToString();
|
||||
}
|
||||
if (row["Reserve1"] != null)
|
||||
{
|
||||
model.Reserve1 = row["Reserve1"].ToString();
|
||||
}
|
||||
if (row["Reserve2"] != null)
|
||||
{
|
||||
model.Reserve2 = row["Reserve2"].ToString();
|
||||
}
|
||||
if (row["Reserve3"] != null)
|
||||
{
|
||||
model.Reserve3 = row["Reserve3"].ToString();
|
||||
}
|
||||
if (row["Reserve4"] != null)
|
||||
{
|
||||
model.Reserve4 = row["Reserve4"].ToString();
|
||||
}
|
||||
if (row["Reserve5"] != null)
|
||||
{
|
||||
model.Reserve5 = row["Reserve5"].ToString();
|
||||
}
|
||||
}
|
||||
return model;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获得数据列表
|
||||
/// </summary>
|
||||
public DataSet GetList(string strWhere)
|
||||
{
|
||||
StringBuilder strSql=new StringBuilder();
|
||||
strSql.Append("select DeviceId,FloorName,DeviceName,Reserve1,Reserve2,Reserve3,Reserve4,Reserve5 ");
|
||||
strSql.Append(" FROM device_info ");
|
||||
if(strWhere.Trim()!="")
|
||||
{
|
||||
strSql.Append(" where "+strWhere);
|
||||
}
|
||||
return DbHelperMySQL.Query(strSql.ToString());
|
||||
}
|
||||
/// <summary>
|
||||
/// 获得数据列表
|
||||
/// </summary>
|
||||
public DataSet GetList(string strWhere)
|
||||
{
|
||||
StringBuilder strSql = new StringBuilder();
|
||||
strSql.Append("select DeviceId,FloorName,DeviceName,Reserve1,Reserve2,Reserve3,Reserve4,Reserve5 ");
|
||||
strSql.Append(" FROM device_info ");
|
||||
if (strWhere.Trim() != "")
|
||||
{
|
||||
strSql.Append(" where " + strWhere);
|
||||
}
|
||||
return DbHelperMySQL.Query(strSql.ToString());
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获取记录总数
|
||||
/// </summary>
|
||||
public int GetRecordCount(string strWhere)
|
||||
{
|
||||
StringBuilder strSql=new StringBuilder();
|
||||
strSql.Append("select count(1) FROM device_info ");
|
||||
if(strWhere.Trim()!="")
|
||||
{
|
||||
strSql.Append(" where "+strWhere);
|
||||
}
|
||||
object obj = DbHelperSQL.GetSingle(strSql.ToString());
|
||||
if (obj == null)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
return Convert.ToInt32(obj);
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// 分页获取数据列表
|
||||
/// </summary>
|
||||
public DataSet GetListByPage(string strWhere, string orderby, int startIndex, int endIndex)
|
||||
{
|
||||
StringBuilder strSql=new StringBuilder();
|
||||
strSql.Append("SELECT * FROM ( ");
|
||||
strSql.Append(" SELECT ROW_NUMBER() OVER (");
|
||||
if (!string.IsNullOrEmpty(orderby.Trim()))
|
||||
{
|
||||
strSql.Append("order by T." + orderby );
|
||||
}
|
||||
else
|
||||
{
|
||||
strSql.Append("order by T.DeviceId desc");
|
||||
}
|
||||
strSql.Append(")AS Row, T.* from device_info T ");
|
||||
if (!string.IsNullOrEmpty(strWhere.Trim()))
|
||||
{
|
||||
strSql.Append(" WHERE " + strWhere);
|
||||
}
|
||||
strSql.Append(" ) TT");
|
||||
strSql.AppendFormat(" WHERE TT.Row between {0} and {1}", startIndex, endIndex);
|
||||
return DbHelperMySQL.Query(strSql.ToString());
|
||||
}
|
||||
/// <summary>
|
||||
/// 获取记录总数
|
||||
/// </summary>
|
||||
public int GetRecordCount(string strWhere)
|
||||
{
|
||||
StringBuilder strSql = new StringBuilder();
|
||||
strSql.Append("select count(1) FROM device_info ");
|
||||
if (strWhere.Trim() != "")
|
||||
{
|
||||
strSql.Append(" where " + strWhere);
|
||||
}
|
||||
object obj = DbHelperSQL.GetSingle(strSql.ToString());
|
||||
if (obj == null)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
return Convert.ToInt32(obj);
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// 分页获取数据列表
|
||||
/// </summary>
|
||||
public DataSet GetListByPage(string strWhere, string orderby, int startIndex, int endIndex)
|
||||
{
|
||||
StringBuilder strSql = new StringBuilder();
|
||||
strSql.Append("SELECT * FROM ( ");
|
||||
strSql.Append(" SELECT ROW_NUMBER() OVER (");
|
||||
if (!string.IsNullOrEmpty(orderby.Trim()))
|
||||
{
|
||||
strSql.Append("order by T." + orderby);
|
||||
}
|
||||
else
|
||||
{
|
||||
strSql.Append("order by T.DeviceId desc");
|
||||
}
|
||||
strSql.Append(")AS Row, T.* from device_info T ");
|
||||
if (!string.IsNullOrEmpty(strWhere.Trim()))
|
||||
{
|
||||
strSql.Append(" WHERE " + strWhere);
|
||||
}
|
||||
strSql.Append(" ) TT");
|
||||
strSql.AppendFormat(" WHERE TT.Row between {0} and {1}", startIndex, endIndex);
|
||||
return DbHelperMySQL.Query(strSql.ToString());
|
||||
}
|
||||
|
||||
/*
|
||||
/// <summary>
|
||||
|
@ -340,15 +340,15 @@ namespace DataService.DAL
|
|||
/// </summary>
|
||||
/// <param name="excludeIds"></param>
|
||||
/// <returns></returns>
|
||||
public DataSet GetLists(List<string> excludeIds)
|
||||
public DataSet GetLists(List<string> excludeIds, string FloorName)
|
||||
{
|
||||
StringBuilder strSql = new StringBuilder();
|
||||
strSql.Append("SELECT DeviceId, FloorName, DeviceName, Reserve1, Reserve2, Reserve3, Reserve4, Reserve5 ");
|
||||
strSql.Append("FROM device_info ");
|
||||
|
||||
strSql.Append("WHERE 1=1");
|
||||
if (excludeIds != null && excludeIds.Count > 0)
|
||||
{
|
||||
strSql.Append("WHERE DeviceId NOT IN (");
|
||||
strSql.Append(" and DeviceId NOT IN (");
|
||||
for (int i = 0; i < excludeIds.Count; i++)
|
||||
{
|
||||
if (i > 0)
|
||||
|
@ -359,6 +359,10 @@ namespace DataService.DAL
|
|||
}
|
||||
strSql.Append(")");
|
||||
}
|
||||
if (!string.IsNullOrEmpty(FloorName))
|
||||
{
|
||||
strSql.Append(string.Format(" and FloorName='{0}'", FloorName));
|
||||
}
|
||||
|
||||
return DbHelperMySQL.Query(strSql.ToString());
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
*
|
||||
* Ver 变更日期 负责人 变更内容
|
||||
* ───────────────────────────────────
|
||||
* V0.01 2024/2/23 17:25:32 N/A 初版
|
||||
* V0.01 2024/8/8 13:08:23 N/A 初版
|
||||
*
|
||||
* Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
|
||||
*┌──────────────────────────────────┐
|
||||
|
@ -21,334 +21,343 @@ using MySql.Data.MySqlClient;
|
|||
using Maticsoft.DBUtility;//Please add references
|
||||
namespace DataService.DAL
|
||||
{
|
||||
/// <summary>
|
||||
/// 数据访问类:lighting_info
|
||||
/// </summary>
|
||||
public partial class lighting_info
|
||||
{
|
||||
public lighting_info()
|
||||
{}
|
||||
#region BasicMethod
|
||||
/// <summary>
|
||||
/// 数据访问类:lighting_info
|
||||
/// </summary>
|
||||
public partial class lighting_info
|
||||
{
|
||||
public lighting_info()
|
||||
{ }
|
||||
#region BasicMethod
|
||||
|
||||
/// <summary>
|
||||
/// 是否存在该记录
|
||||
/// </summary>
|
||||
public bool Exists(string LightingId)
|
||||
{
|
||||
StringBuilder strSql=new StringBuilder();
|
||||
strSql.Append("select count(1) from lighting_info");
|
||||
strSql.Append(" where LightingId=@LightingId ");
|
||||
MySqlParameter[] parameters = {
|
||||
new MySqlParameter("@LightingId", MySqlDbType.VarChar,255) };
|
||||
parameters[0].Value = LightingId;
|
||||
/// <summary>
|
||||
/// 是否存在该记录
|
||||
/// </summary>
|
||||
public bool Exists(string LightingId)
|
||||
{
|
||||
StringBuilder strSql = new StringBuilder();
|
||||
strSql.Append("select count(1) from lighting_info");
|
||||
strSql.Append(" where LightingId=@LightingId ");
|
||||
MySqlParameter[] parameters = {
|
||||
new MySqlParameter("@LightingId", MySqlDbType.VarChar,255) };
|
||||
parameters[0].Value = LightingId;
|
||||
|
||||
return DbHelperMySQL.Exists(strSql.ToString(),parameters);
|
||||
}
|
||||
return DbHelperMySQL.Exists(strSql.ToString(), parameters);
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 增加一条数据
|
||||
/// </summary>
|
||||
public bool Add(DataService.Model.lighting_info model)
|
||||
{
|
||||
StringBuilder strSql=new StringBuilder();
|
||||
strSql.Append("insert into lighting_info(");
|
||||
strSql.Append("LightingId,LightingNumber,LightingName,LightingType,LightingState,LightingMalfunction,PointerCode,ClientId,Reserve1,Reserve2,Reserve3,Reserve4,Reserve5)");
|
||||
strSql.Append(" values (");
|
||||
strSql.Append("@LightingId,@LightingNumber,@LightingName,@LightingType,@LightingState,@LightingMalfunction,@PointerCode,@ClientId,@Reserve1,@Reserve2,@Reserve3,@Reserve4,@Reserve5)");
|
||||
MySqlParameter[] parameters = {
|
||||
new MySqlParameter("@LightingId", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@LightingNumber", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@LightingName", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@LightingType", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@LightingState", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@LightingMalfunction", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@PointerCode", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@ClientId", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve1", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve2", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve3", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve4", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve5", MySqlDbType.VarChar,255)};
|
||||
parameters[0].Value = model.LightingId;
|
||||
parameters[1].Value = model.LightingNumber;
|
||||
parameters[2].Value = model.LightingName;
|
||||
parameters[3].Value = model.LightingType;
|
||||
parameters[4].Value = model.LightingState;
|
||||
parameters[5].Value = model.LightingMalfunction;
|
||||
parameters[6].Value = model.PointerCode;
|
||||
parameters[7].Value = model.ClientId;
|
||||
parameters[8].Value = model.Reserve1;
|
||||
parameters[9].Value = model.Reserve2;
|
||||
parameters[10].Value = model.Reserve3;
|
||||
parameters[11].Value = model.Reserve4;
|
||||
parameters[12].Value = model.Reserve5;
|
||||
/// <summary>
|
||||
/// 增加一条数据
|
||||
/// </summary>
|
||||
public bool Add(DataService.Model.lighting_info model)
|
||||
{
|
||||
StringBuilder strSql = new StringBuilder();
|
||||
strSql.Append("insert into lighting_info(");
|
||||
strSql.Append("LightingId,LightingNumber,LightingName,LightingType,LightingState,LightingMalfunction,PointerCode,ClientId,UpdateTime,Reserve1,Reserve2,Reserve3,Reserve4,Reserve5)");
|
||||
strSql.Append(" values (");
|
||||
strSql.Append("@LightingId,@LightingNumber,@LightingName,@LightingType,@LightingState,@LightingMalfunction,@PointerCode,@ClientId,@UpdateTime,@Reserve1,@Reserve2,@Reserve3,@Reserve4,@Reserve5)");
|
||||
MySqlParameter[] parameters = {
|
||||
new MySqlParameter("@LightingId", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@LightingNumber", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@LightingName", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@LightingType", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@LightingState", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@LightingMalfunction", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@PointerCode", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@ClientId", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@UpdateTime", MySqlDbType.DateTime),
|
||||
new MySqlParameter("@Reserve1", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve2", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve3", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve4", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve5", MySqlDbType.VarChar,255)};
|
||||
parameters[0].Value = model.LightingId;
|
||||
parameters[1].Value = model.LightingNumber;
|
||||
parameters[2].Value = model.LightingName;
|
||||
parameters[3].Value = model.LightingType;
|
||||
parameters[4].Value = model.LightingState;
|
||||
parameters[5].Value = model.LightingMalfunction;
|
||||
parameters[6].Value = model.PointerCode;
|
||||
parameters[7].Value = model.ClientId;
|
||||
parameters[8].Value = model.UpdateTime;
|
||||
parameters[9].Value = model.Reserve1;
|
||||
parameters[10].Value = model.Reserve2;
|
||||
parameters[11].Value = model.Reserve3;
|
||||
parameters[12].Value = model.Reserve4;
|
||||
parameters[13].Value = model.Reserve5;
|
||||
|
||||
int rows=DbHelperMySQL.ExecuteSql(strSql.ToString(),parameters);
|
||||
if (rows > 0)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// 更新一条数据
|
||||
/// </summary>
|
||||
public bool Update(DataService.Model.lighting_info model)
|
||||
{
|
||||
StringBuilder strSql=new StringBuilder();
|
||||
strSql.Append("update lighting_info set ");
|
||||
strSql.Append("LightingNumber=@LightingNumber,");
|
||||
strSql.Append("LightingName=@LightingName,");
|
||||
strSql.Append("LightingType=@LightingType,");
|
||||
strSql.Append("LightingState=@LightingState,");
|
||||
strSql.Append("LightingMalfunction=@LightingMalfunction,");
|
||||
strSql.Append("PointerCode=@PointerCode,");
|
||||
strSql.Append("ClientId=@ClientId,");
|
||||
strSql.Append("Reserve1=@Reserve1,");
|
||||
strSql.Append("Reserve2=@Reserve2,");
|
||||
strSql.Append("Reserve3=@Reserve3,");
|
||||
strSql.Append("Reserve4=@Reserve4,");
|
||||
strSql.Append("Reserve5=@Reserve5");
|
||||
strSql.Append(" where LightingId=@LightingId ");
|
||||
MySqlParameter[] parameters = {
|
||||
new MySqlParameter("@LightingNumber", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@LightingName", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@LightingType", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@LightingState", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@LightingMalfunction", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@PointerCode", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@ClientId", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve1", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve2", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve3", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve4", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve5", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@LightingId", MySqlDbType.VarChar,255)};
|
||||
parameters[0].Value = model.LightingNumber;
|
||||
parameters[1].Value = model.LightingName;
|
||||
parameters[2].Value = model.LightingType;
|
||||
parameters[3].Value = model.LightingState;
|
||||
parameters[4].Value = model.LightingMalfunction;
|
||||
parameters[5].Value = model.PointerCode;
|
||||
parameters[6].Value = model.ClientId;
|
||||
parameters[7].Value = model.Reserve1;
|
||||
parameters[8].Value = model.Reserve2;
|
||||
parameters[9].Value = model.Reserve3;
|
||||
parameters[10].Value = model.Reserve4;
|
||||
parameters[11].Value = model.Reserve5;
|
||||
parameters[12].Value = model.LightingId;
|
||||
int rows = DbHelperMySQL.ExecuteSql(strSql.ToString(), parameters);
|
||||
if (rows > 0)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// 更新一条数据
|
||||
/// </summary>
|
||||
public bool Update(DataService.Model.lighting_info model)
|
||||
{
|
||||
StringBuilder strSql = new StringBuilder();
|
||||
strSql.Append("update lighting_info set ");
|
||||
strSql.Append("LightingNumber=@LightingNumber,");
|
||||
strSql.Append("LightingName=@LightingName,");
|
||||
strSql.Append("LightingType=@LightingType,");
|
||||
strSql.Append("LightingState=@LightingState,");
|
||||
strSql.Append("LightingMalfunction=@LightingMalfunction,");
|
||||
strSql.Append("PointerCode=@PointerCode,");
|
||||
strSql.Append("ClientId=@ClientId,");
|
||||
strSql.Append("UpdateTime=@UpdateTime,");
|
||||
strSql.Append("Reserve1=@Reserve1,");
|
||||
strSql.Append("Reserve2=@Reserve2,");
|
||||
strSql.Append("Reserve3=@Reserve3,");
|
||||
strSql.Append("Reserve4=@Reserve4,");
|
||||
strSql.Append("Reserve5=@Reserve5");
|
||||
strSql.Append(" where LightingId=@LightingId ");
|
||||
MySqlParameter[] parameters = {
|
||||
new MySqlParameter("@LightingNumber", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@LightingName", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@LightingType", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@LightingState", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@LightingMalfunction", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@PointerCode", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@ClientId", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@UpdateTime", MySqlDbType.DateTime),
|
||||
new MySqlParameter("@Reserve1", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve2", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve3", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve4", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@Reserve5", MySqlDbType.VarChar,255),
|
||||
new MySqlParameter("@LightingId", MySqlDbType.VarChar,255)};
|
||||
parameters[0].Value = model.LightingNumber;
|
||||
parameters[1].Value = model.LightingName;
|
||||
parameters[2].Value = model.LightingType;
|
||||
parameters[3].Value = model.LightingState;
|
||||
parameters[4].Value = model.LightingMalfunction;
|
||||
parameters[5].Value = model.PointerCode;
|
||||
parameters[6].Value = model.ClientId;
|
||||
parameters[7].Value = model.UpdateTime;
|
||||
parameters[8].Value = model.Reserve1;
|
||||
parameters[9].Value = model.Reserve2;
|
||||
parameters[10].Value = model.Reserve3;
|
||||
parameters[11].Value = model.Reserve4;
|
||||
parameters[12].Value = model.Reserve5;
|
||||
parameters[13].Value = model.LightingId;
|
||||
|
||||
int rows=DbHelperMySQL.ExecuteSql(strSql.ToString(),parameters);
|
||||
if (rows > 0)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
int rows = DbHelperMySQL.ExecuteSql(strSql.ToString(), parameters);
|
||||
if (rows > 0)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 删除一条数据
|
||||
/// </summary>
|
||||
public bool Delete(string LightingId)
|
||||
{
|
||||
|
||||
StringBuilder strSql=new StringBuilder();
|
||||
strSql.Append("delete from lighting_info ");
|
||||
strSql.Append(" where LightingId=@LightingId ");
|
||||
MySqlParameter[] parameters = {
|
||||
new MySqlParameter("@LightingId", MySqlDbType.VarChar,255) };
|
||||
parameters[0].Value = LightingId;
|
||||
/// <summary>
|
||||
/// 删除一条数据
|
||||
/// </summary>
|
||||
public bool Delete(string LightingId)
|
||||
{
|
||||
|
||||
int rows=DbHelperMySQL.ExecuteSql(strSql.ToString(),parameters);
|
||||
if (rows > 0)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// 批量删除数据
|
||||
/// </summary>
|
||||
public bool DeleteList(string LightingIdlist )
|
||||
{
|
||||
StringBuilder strSql=new StringBuilder();
|
||||
strSql.Append("delete from lighting_info ");
|
||||
strSql.Append(" where LightingId in ("+LightingIdlist + ") ");
|
||||
int rows=DbHelperMySQL.ExecuteSql(strSql.ToString());
|
||||
if (rows > 0)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
StringBuilder strSql = new StringBuilder();
|
||||
strSql.Append("delete from lighting_info ");
|
||||
strSql.Append(" where LightingId=@LightingId ");
|
||||
MySqlParameter[] parameters = {
|
||||
new MySqlParameter("@LightingId", MySqlDbType.VarChar,255) };
|
||||
parameters[0].Value = LightingId;
|
||||
|
||||
int rows = DbHelperMySQL.ExecuteSql(strSql.ToString(), parameters);
|
||||
if (rows > 0)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// 批量删除数据
|
||||
/// </summary>
|
||||
public bool DeleteList(string LightingIdlist)
|
||||
{
|
||||
StringBuilder strSql = new StringBuilder();
|
||||
strSql.Append("delete from lighting_info ");
|
||||
strSql.Append(" where LightingId in (" + LightingIdlist + ") ");
|
||||
int rows = DbHelperMySQL.ExecuteSql(strSql.ToString());
|
||||
if (rows > 0)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 得到一个对象实体
|
||||
/// </summary>
|
||||
public DataService.Model.lighting_info GetModel(string LightingId)
|
||||
{
|
||||
|
||||
StringBuilder strSql=new StringBuilder();
|
||||
strSql.Append("select LightingId,LightingNumber,LightingName,LightingType,LightingState,LightingMalfunction,PointerCode,ClientId,Reserve1,Reserve2,Reserve3,Reserve4,Reserve5 from lighting_info ");
|
||||
strSql.Append(" where LightingId=@LightingId ");
|
||||
MySqlParameter[] parameters = {
|
||||
new MySqlParameter("@LightingId", MySqlDbType.VarChar,255) };
|
||||
parameters[0].Value = LightingId;
|
||||
/// <summary>
|
||||
/// 得到一个对象实体
|
||||
/// </summary>
|
||||
public DataService.Model.lighting_info GetModel(string LightingId)
|
||||
{
|
||||
|
||||
DataService.Model.lighting_info model=new DataService.Model.lighting_info();
|
||||
DataSet ds=DbHelperMySQL.Query(strSql.ToString(),parameters);
|
||||
if(ds.Tables[0].Rows.Count>0)
|
||||
{
|
||||
return DataRowToModel(ds.Tables[0].Rows[0]);
|
||||
}
|
||||
else
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
StringBuilder strSql = new StringBuilder();
|
||||
strSql.Append("select LightingId,LightingNumber,LightingName,LightingType,LightingState,LightingMalfunction,PointerCode,ClientId,UpdateTime,Reserve1,Reserve2,Reserve3,Reserve4,Reserve5 from lighting_info ");
|
||||
strSql.Append(" where LightingId=@LightingId ");
|
||||
MySqlParameter[] parameters = {
|
||||
new MySqlParameter("@LightingId", MySqlDbType.VarChar,255) };
|
||||
parameters[0].Value = LightingId;
|
||||
|
||||
DataService.Model.lighting_info model = new DataService.Model.lighting_info();
|
||||
DataSet ds = DbHelperMySQL.Query(strSql.ToString(), parameters);
|
||||
if (ds.Tables[0].Rows.Count > 0)
|
||||
{
|
||||
return DataRowToModel(ds.Tables[0].Rows[0]);
|
||||
}
|
||||
else
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 得到一个对象实体
|
||||
/// </summary>
|
||||
public DataService.Model.lighting_info DataRowToModel(DataRow row)
|
||||
{
|
||||
DataService.Model.lighting_info model=new DataService.Model.lighting_info();
|
||||
if (row != null)
|
||||
{
|
||||
if(row["LightingId"]!=null)
|
||||
{
|
||||
model.LightingId=row["LightingId"].ToString();
|
||||
}
|
||||
if(row["LightingNumber"]!=null)
|
||||
{
|
||||
model.LightingNumber=row["LightingNumber"].ToString();
|
||||
}
|
||||
if(row["LightingName"]!=null)
|
||||
{
|
||||
model.LightingName=row["LightingName"].ToString();
|
||||
}
|
||||
if(row["LightingType"]!=null)
|
||||
{
|
||||
model.LightingType=row["LightingType"].ToString();
|
||||
}
|
||||
if(row["LightingState"]!=null)
|
||||
{
|
||||
model.LightingState=row["LightingState"].ToString();
|
||||
}
|
||||
if(row["LightingMalfunction"]!=null)
|
||||
{
|
||||
model.LightingMalfunction=row["LightingMalfunction"].ToString();
|
||||
}
|
||||
if(row["PointerCode"]!=null)
|
||||
{
|
||||
model.PointerCode=row["PointerCode"].ToString();
|
||||
}
|
||||
if(row["ClientId"]!=null)
|
||||
{
|
||||
model.ClientId=row["ClientId"].ToString();
|
||||
}
|
||||
if(row["Reserve1"]!=null)
|
||||
{
|
||||
model.Reserve1=row["Reserve1"].ToString();
|
||||
}
|
||||
if(row["Reserve2"]!=null)
|
||||
{
|
||||
model.Reserve2=row["Reserve2"].ToString();
|
||||
}
|
||||
if(row["Reserve3"]!=null)
|
||||
{
|
||||
model.Reserve3=row["Reserve3"].ToString();
|
||||
}
|
||||
if(row["Reserve4"]!=null)
|
||||
{
|
||||
model.Reserve4=row["Reserve4"].ToString();
|
||||
}
|
||||
if(row["Reserve5"]!=null)
|
||||
{
|
||||
model.Reserve5=row["Reserve5"].ToString();
|
||||
}
|
||||
}
|
||||
return model;
|
||||
}
|
||||
/// <summary>
|
||||
/// 得到一个对象实体
|
||||
/// </summary>
|
||||
public DataService.Model.lighting_info DataRowToModel(DataRow row)
|
||||
{
|
||||
DataService.Model.lighting_info model = new DataService.Model.lighting_info();
|
||||
if (row != null)
|
||||
{
|
||||
if (row["LightingId"] != null)
|
||||
{
|
||||
model.LightingId = row["LightingId"].ToString();
|
||||
}
|
||||
if (row["LightingNumber"] != null)
|
||||
{
|
||||
model.LightingNumber = row["LightingNumber"].ToString();
|
||||
}
|
||||
if (row["LightingName"] != null)
|
||||
{
|
||||
model.LightingName = row["LightingName"].ToString();
|
||||
}
|
||||
if (row["LightingType"] != null)
|
||||
{
|
||||
model.LightingType = row["LightingType"].ToString();
|
||||
}
|
||||
if (row["LightingState"] != null)
|
||||
{
|
||||
model.LightingState = row["LightingState"].ToString();
|
||||
}
|
||||
if (row["LightingMalfunction"] != null)
|
||||
{
|
||||
model.LightingMalfunction = row["LightingMalfunction"].ToString();
|
||||
}
|
||||
if (row["PointerCode"] != null)
|
||||
{
|
||||
model.PointerCode = row["PointerCode"].ToString();
|
||||
}
|
||||
if (row["ClientId"] != null)
|
||||
{
|
||||
model.ClientId = row["ClientId"].ToString();
|
||||
}
|
||||
if (row["UpdateTime"] != null && row["UpdateTime"].ToString() != "")
|
||||
{
|
||||
model.UpdateTime = DateTime.Parse(row["UpdateTime"].ToString());
|
||||
}
|
||||
if (row["Reserve1"] != null)
|
||||
{
|
||||
model.Reserve1 = row["Reserve1"].ToString();
|
||||
}
|
||||
if (row["Reserve2"] != null)
|
||||
{
|
||||
model.Reserve2 = row["Reserve2"].ToString();
|
||||
}
|
||||
if (row["Reserve3"] != null)
|
||||
{
|
||||
model.Reserve3 = row["Reserve3"].ToString();
|
||||
}
|
||||
if (row["Reserve4"] != null)
|
||||
{
|
||||
model.Reserve4 = row["Reserve4"].ToString();
|
||||
}
|
||||
if (row["Reserve5"] != null)
|
||||
{
|
||||
model.Reserve5 = row["Reserve5"].ToString();
|
||||
}
|
||||
}
|
||||
return model;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获得数据列表
|
||||
/// </summary>
|
||||
public DataSet GetList(string strWhere)
|
||||
{
|
||||
StringBuilder strSql=new StringBuilder();
|
||||
strSql.Append("select LightingId,LightingNumber,LightingName,LightingType,LightingState,LightingMalfunction,PointerCode,ClientId,Reserve1,Reserve2,Reserve3,Reserve4,Reserve5 ");
|
||||
strSql.Append(" FROM lighting_info ");
|
||||
if(strWhere.Trim()!="")
|
||||
{
|
||||
strSql.Append(" where "+strWhere);
|
||||
}
|
||||
return DbHelperMySQL.Query(strSql.ToString());
|
||||
}
|
||||
/// <summary>
|
||||
/// 获得数据列表
|
||||
/// </summary>
|
||||
public DataSet GetList(string strWhere)
|
||||
{
|
||||
StringBuilder strSql = new StringBuilder();
|
||||
strSql.Append("select LightingId,LightingNumber,LightingName,LightingType,LightingState,LightingMalfunction,PointerCode,ClientId,UpdateTime,Reserve1,Reserve2,Reserve3,Reserve4,Reserve5 ");
|
||||
strSql.Append(" FROM lighting_info ");
|
||||
if (strWhere.Trim() != "")
|
||||
{
|
||||
strSql.Append(" where " + strWhere);
|
||||
}
|
||||
return DbHelperMySQL.Query(strSql.ToString());
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获取记录总数
|
||||
/// </summary>
|
||||
public int GetRecordCount(string strWhere)
|
||||
{
|
||||
StringBuilder strSql=new StringBuilder();
|
||||
strSql.Append("select count(1) FROM lighting_info ");
|
||||
if(strWhere.Trim()!="")
|
||||
{
|
||||
strSql.Append(" where "+strWhere);
|
||||
}
|
||||
object obj = DbHelperSQL.GetSingle(strSql.ToString());
|
||||
if (obj == null)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
return Convert.ToInt32(obj);
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// 分页获取数据列表
|
||||
/// </summary>
|
||||
public DataSet GetListByPage(string strWhere, string orderby, int startIndex, int endIndex)
|
||||
{
|
||||
StringBuilder strSql=new StringBuilder();
|
||||
strSql.Append("SELECT * FROM ( ");
|
||||
strSql.Append(" SELECT ROW_NUMBER() OVER (");
|
||||
if (!string.IsNullOrEmpty(orderby.Trim()))
|
||||
{
|
||||
strSql.Append("order by T." + orderby );
|
||||
}
|
||||
else
|
||||
{
|
||||
strSql.Append("order by T.LightingId desc");
|
||||
}
|
||||
strSql.Append(")AS Row, T.* from lighting_info T ");
|
||||
if (!string.IsNullOrEmpty(strWhere.Trim()))
|
||||
{
|
||||
strSql.Append(" WHERE " + strWhere);
|
||||
}
|
||||
strSql.Append(" ) TT");
|
||||
strSql.AppendFormat(" WHERE TT.Row between {0} and {1}", startIndex, endIndex);
|
||||
return DbHelperMySQL.Query(strSql.ToString());
|
||||
}
|
||||
/// <summary>
|
||||
/// 获取记录总数
|
||||
/// </summary>
|
||||
public int GetRecordCount(string strWhere)
|
||||
{
|
||||
StringBuilder strSql = new StringBuilder();
|
||||
strSql.Append("select count(1) FROM lighting_info ");
|
||||
if (strWhere.Trim() != "")
|
||||
{
|
||||
strSql.Append(" where " + strWhere);
|
||||
}
|
||||
object obj = DbHelperMySQL.GetSingle(strSql.ToString());
|
||||
if (obj == null)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
return Convert.ToInt32(obj);
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// 分页获取数据列表
|
||||
/// </summary>
|
||||
public DataSet GetListByPage(string strWhere, string orderby, int startIndex, int endIndex)
|
||||
{
|
||||
StringBuilder strSql = new StringBuilder();
|
||||
strSql.Append("SELECT * FROM ( ");
|
||||
strSql.Append(" SELECT ROW_NUMBER() OVER (");
|
||||
if (!string.IsNullOrEmpty(orderby.Trim()))
|
||||
{
|
||||
strSql.Append("order by T." + orderby);
|
||||
}
|
||||
else
|
||||
{
|
||||
strSql.Append("order by T.LightingId desc");
|
||||
}
|
||||
strSql.Append(")AS Row, T.* from lighting_info T ");
|
||||
if (!string.IsNullOrEmpty(strWhere.Trim()))
|
||||
{
|
||||
strSql.Append(" WHERE " + strWhere);
|
||||
}
|
||||
strSql.Append(" ) TT");
|
||||
strSql.AppendFormat(" WHERE TT.Row between {0} and {1}", startIndex, endIndex);
|
||||
return DbHelperMySQL.Query(strSql.ToString());
|
||||
}
|
||||
|
||||
/*
|
||||
/*
|
||||
/// <summary>
|
||||
/// 分页获取数据列表
|
||||
/// </summary>
|
||||
|
@ -373,10 +382,10 @@ namespace DataService.DAL
|
|||
return DbHelperMySQL.RunProcedure("UP_GetRecordByPage",parameters,"ds");
|
||||
}*/
|
||||
|
||||
#endregion BasicMethod
|
||||
#region ExtensionMethod
|
||||
#endregion BasicMethod
|
||||
#region ExtensionMethod
|
||||
|
||||
#endregion ExtensionMethod
|
||||
}
|
||||
#endregion ExtensionMethod
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -61,6 +61,7 @@
|
|||
<Compile Include="api\get_carbon_trend.cs" />
|
||||
<Compile Include="api\get_daily_electricity.cs" />
|
||||
<Compile Include="api\get_data.cs" />
|
||||
<Compile Include="api\get_data_pump.cs" />
|
||||
<Compile Include="api\get_data_state.cs" />
|
||||
<Compile Include="api\get_drain_heading.cs" />
|
||||
<Compile Include="api\get_electrical_condition.cs" />
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
*
|
||||
* Ver 变更日期 负责人 变更内容
|
||||
* ───────────────────────────────────
|
||||
* V0.01 2024/2/23 17:25:32 N/A 初版
|
||||
* V0.01 2024/8/8 13:08:22 N/A 初版
|
||||
*
|
||||
* Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
|
||||
*┌──────────────────────────────────┐
|
||||
|
@ -34,6 +34,7 @@ namespace DataService.Model
|
|||
private string _lightingmalfunction;
|
||||
private string _pointercode;
|
||||
private string _clientid;
|
||||
private DateTime? _updatetime;
|
||||
private string _reserve1;
|
||||
private string _reserve2;
|
||||
private string _reserve3;
|
||||
|
@ -106,6 +107,14 @@ namespace DataService.Model
|
|||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public DateTime? UpdateTime
|
||||
{
|
||||
set{ _updatetime=value;}
|
||||
get{return _updatetime;}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Reserve1
|
||||
{
|
||||
set{ _reserve1=value;}
|
||||
|
|
|
@ -0,0 +1,23 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DataService.api
|
||||
{
|
||||
public class get_data_pump
|
||||
{
|
||||
public b_pump b { get; set; }
|
||||
}
|
||||
public class b_pump
|
||||
{
|
||||
public List<dvl_pump> dvl { get; set; }
|
||||
public DateTime ts { get; set; }
|
||||
}
|
||||
public class dvl_pump
|
||||
{
|
||||
public string da { get; set; }
|
||||
public Dictionary<string, string> dl { get; set; }
|
||||
}
|
||||
}
|
|
@ -15,6 +15,6 @@ namespace DataService.api
|
|||
public class meteorological_stationData
|
||||
{
|
||||
public string name { get; set; }
|
||||
public int value { get; set; }
|
||||
public decimal value { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1 +1 @@
|
|||
3293909a0dc8db44a592efac06c1049f33aa95ca
|
||||
c735eafae718d0a8c51f33001640292d7013548a
|
||||
|
|
|
@ -8,3 +8,13 @@ E:\林谷项目\长岛展览馆项目\后端\LonglslandExhibitionCenter\DataServ
|
|||
E:\林谷项目\长岛展览馆项目\后端\LonglslandExhibitionCenter\DataService\obj\Debug\DataService.csproj.CopyComplete
|
||||
E:\林谷项目\长岛展览馆项目\后端\LonglslandExhibitionCenter\DataService\obj\Debug\DataService.dll
|
||||
E:\林谷项目\长岛展览馆项目\后端\LonglslandExhibitionCenter\DataService\obj\Debug\DataService.pdb
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\DataService\bin\Debug\DataService.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\DataService\bin\Debug\DataService.pdb
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\DataService\bin\Debug\Maticsoft.Common.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\DataService\bin\Debug\Maticsoft.DBUtility.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\DataService\bin\Debug\MySql.Data.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\DataService\obj\Debug\DataService.csproj.AssemblyReference.cache
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\DataService\obj\Debug\DataService.csproj.CoreCompileInputs.cache
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\DataService\obj\Debug\DataService.csproj.CopyComplete
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\DataService\obj\Debug\DataService.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\DataService\obj\Debug\DataService.pdb
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -40,38 +40,38 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
var edate = Convert.ToDateTime(DateTime.Now.ToString("yyyy-MM-dd 00:00:00"));
|
||||
#region 电
|
||||
var list1 = list.Where(x => x.EntireTime == sdate).ToList();
|
||||
var list2=list.Where(x => x.EntireTime==edate).ToList();
|
||||
var list2 = list.Where(x => x.EntireTime == edate).ToList();
|
||||
var num1 = list1.Sum(x => x.EH);
|
||||
var num2=list2.Sum(x => x.EH);
|
||||
var num2 = list2.Sum(x => x.EH);
|
||||
var model = new carbon_fluxData()
|
||||
{
|
||||
Amount = Convert.ToDecimal(Math.Round(Convert.ToDouble(num1 - num2)/1000*0.5703, 3))
|
||||
Amount = Convert.ToDecimal(Math.Round(Convert.ToDouble(num1 - num2) / 1000 * 0.5703, 3))
|
||||
};
|
||||
#endregion
|
||||
var adata = new List<carbon_flux>();
|
||||
#region 空调
|
||||
var model1 = new carbon_flux();
|
||||
var salist = list.Where(x => x.Reserve2.Contains("空调")&&x.EntireTime==sdate);
|
||||
var salist = list.Where(x => x.Reserve2.Contains("空调") && x.EntireTime == sdate);
|
||||
var ealist = list.Where(x => x.Reserve2.Contains("空调") && x.EntireTime == edate);
|
||||
model1.AirConditioner = Convert.ToDecimal(Math.Round(Convert.ToDouble(salist.Sum(x=>x.EH) - ealist.Sum(x=>x.EH)) / 1000 * 0.5703, 3));
|
||||
model1.AirConditioner = Convert.ToDecimal(Math.Round(Convert.ToDouble(salist.Sum(x => x.EH) - ealist.Sum(x => x.EH)) / 1000 * 0.5703, 3));
|
||||
#endregion
|
||||
#region 照明
|
||||
var sblist = list.Where(x => x.Reserve2.Contains("照明") && x.EntireTime == sdate);
|
||||
var eblist = list.Where(x => x.Reserve2.Contains("照明") && x.EntireTime == edate);
|
||||
model1.Lighting = Convert.ToDecimal(Math.Round(Convert.ToDouble(sblist.Sum(x => x.EH) - eblist.Sum(x => x.EH)) / 1000 * 0.5703, 3) );
|
||||
model1.Lighting = Convert.ToDecimal(Math.Round(Convert.ToDouble(sblist.Sum(x => x.EH) - eblist.Sum(x => x.EH)) / 1000 * 0.5703, 3));
|
||||
#endregion
|
||||
#region 电梯
|
||||
var sclist = list.Where(x => x.Reserve2.Contains("电梯") && x.EntireTime == sdate);
|
||||
var eclist = list.Where(x => x.Reserve2.Contains("电梯") && x.EntireTime == edate);
|
||||
model1.Elevator = Convert.ToDecimal(Math.Round(Convert.ToDouble(sclist.Sum(x => x.EH) - eclist.Sum(x => x.EH)) / 1000 * 0.5703, 3) );
|
||||
model1.Elevator = Convert.ToDecimal(Math.Round(Convert.ToDouble(sclist.Sum(x => x.EH) - eclist.Sum(x => x.EH)) / 1000 * 0.5703, 3));
|
||||
#endregion
|
||||
#region 其它
|
||||
var selist = list.Where(x =>!x.Reserve2.Contains("空调")&&!x.Reserve2.Contains("照明")&&! x.Reserve2.Contains("电梯") && x.EntireTime == sdate);
|
||||
var eelist = list.Where(x => !x.Reserve2.Contains("空调") &&! x.Reserve2.Contains("照明") && x.Reserve2.Contains("电梯") && x.EntireTime == edate);
|
||||
var selist = list.Where(x => !x.Reserve2.Contains("空调") && !x.Reserve2.Contains("照明") && !x.Reserve2.Contains("电梯") && x.EntireTime == sdate);
|
||||
var eelist = list.Where(x => !x.Reserve2.Contains("空调") && !x.Reserve2.Contains("照明") && !x.Reserve2.Contains("电梯") && x.EntireTime == edate);
|
||||
model1.Other = Convert.ToDecimal(Math.Round(Convert.ToDouble(selist.Sum(x => x.EH) - eelist.Sum(x => x.EH)) / 1000 * 0.5703, 3));
|
||||
adata.Add(model1);
|
||||
#endregion
|
||||
model.data= adata;
|
||||
model.data = adata;
|
||||
data.Add(model);
|
||||
res.code = 200;
|
||||
res.msg = "成功";
|
||||
|
|
|
@ -35,7 +35,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
{
|
||||
var data = new List<carbon_intensityData>();
|
||||
var list = bll.GetModelListDate(" Reserve1='配电室高压'", time);
|
||||
var now=DateTime.Now;
|
||||
var now = DateTime.Now;
|
||||
var time_count = Convert.ToInt32(DateTime.Now.Month);
|
||||
for (int i = 0; i < time_count; i++)
|
||||
{
|
||||
|
@ -60,7 +60,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
var model = new carbon_intensityData()
|
||||
{
|
||||
time = DateTime.Now.AddMonths(-i).ToString("MM月"),
|
||||
CarbonIntensity = Convert.ToDecimal(Math.Round(Convert.ToDouble(alist.Sum(x => x.EH) - blist.Sum(x => x.EH)) / 1000 * 0.5703, 3))
|
||||
CarbonIntensity = Convert.ToDecimal(Math.Round((Convert.ToDouble(alist.Sum(x => x.EH) - blist.Sum(x => x.EH)) / 1000 * 0.5703) / 26010, 3))
|
||||
};
|
||||
if (model.CarbonIntensity < 0)
|
||||
{
|
||||
|
|
|
@ -25,16 +25,22 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
var data = new List<carbon_neutralData>();
|
||||
var model1 = new carbon_neutralData()
|
||||
{
|
||||
name = "绿电",
|
||||
CarbonNeutral = "60"
|
||||
name = "CCER",
|
||||
CarbonNeutral = "35"
|
||||
};
|
||||
data.Add(model1);
|
||||
var model2 = new carbon_neutralData()
|
||||
{
|
||||
name = "绿证",
|
||||
CarbonNeutral = "40"
|
||||
name = "绿电",
|
||||
CarbonNeutral = "35"
|
||||
};
|
||||
data.Add(model2);
|
||||
var model3 = new carbon_neutralData()
|
||||
{
|
||||
name = "绿证",
|
||||
CarbonNeutral = "30"
|
||||
};
|
||||
data.Add(model3);
|
||||
res.code = 200;
|
||||
res.msg = "成功";
|
||||
res.data = data;
|
||||
|
|
|
@ -29,63 +29,69 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
{
|
||||
if (date == "月")
|
||||
{
|
||||
var stime = now.ToString("yyyyMM");
|
||||
var a = bll.IsExistsTable("changdao_zhanlanguang", "electricity_data_" + stime);
|
||||
if (a == false)
|
||||
{
|
||||
bll.CreateTable(stime);
|
||||
}
|
||||
string sdate;
|
||||
sdate = now.AddHours(-1).ToString("yyyy-MM-dd HH:00:00");
|
||||
var edate = now.ToString("yyyy-dd-01 00:00:00");
|
||||
var slist = bll.GetModelListDate(" EntireTime='" + sdate + "' and Reserve1='配电室高压'", stime);
|
||||
var elist = bll.GetModelListDate(" EntireTime='" + edate + "' and Reserve1='配电室高压'", stime);
|
||||
decimal? num1 = slist.Sum(x => x.EH);
|
||||
decimal? num2 = elist.Sum(x => x.EH);
|
||||
var model = new carbon_overviewData()
|
||||
{
|
||||
TotalRelease = Convert.ToDecimal(Math.Round(Convert.ToDouble(num1 - num2) / 1000 * 0.5703, 3)),
|
||||
CarbonOffset = 0,
|
||||
CarbonReduction= 0,
|
||||
};
|
||||
if (model.TotalRelease < 0)
|
||||
{
|
||||
model.TotalRelease = 0;
|
||||
}
|
||||
data.Add(model);
|
||||
string sdate;
|
||||
sdate = now.AddHours(-1).ToString("yyyy-MM-dd HH:00:00");
|
||||
var edate = now.ToString("yyyy-MM-01 00:00:00");
|
||||
var stime = DateTime.Parse(sdate).ToString("yyyyMM");
|
||||
var a = bll.IsExistsTable("changdao_zhanlanguang", "electricity_data_" + stime);
|
||||
if (a == false)
|
||||
{
|
||||
bll.CreateTable(stime);
|
||||
}
|
||||
var etime= DateTime.Parse(edate).ToString("yyyyMM");
|
||||
var b = bll.IsExistsTable("changdao_zhanlanguang", "electricity_data_" + etime);
|
||||
if (b == false)
|
||||
{
|
||||
bll.CreateTable(etime);
|
||||
}
|
||||
var slist = bll.GetModelListDate(" EntireTime='" + sdate + "' and Reserve1='配电室高压'", stime);
|
||||
var elist = bll.GetModelListDate(" EntireTime='" + edate + "' and Reserve1='配电室高压'", etime);
|
||||
decimal? num1 = slist.Sum(x => x.EH);
|
||||
decimal? num2 = elist.Sum(x => x.EH);
|
||||
var model = new carbon_overviewData()
|
||||
{
|
||||
TotalRelease = Convert.ToDecimal(Math.Round(Convert.ToDouble(num1 - num2) / 1000 * 0.5703, 3)),
|
||||
CarbonOffset = 0,
|
||||
CarbonReduction = 0,
|
||||
};
|
||||
if (model.TotalRelease < 0)
|
||||
{
|
||||
model.TotalRelease = 0;
|
||||
}
|
||||
data.Add(model);
|
||||
}
|
||||
if (date == "年")
|
||||
{
|
||||
var stime = now.ToString("yyyyMM");
|
||||
var etime = now.AddYears(-1).ToString("yyyyMM");
|
||||
var a = bll.IsExistsTable("changdao_zhanlanguang", "electricity_data_" + stime);
|
||||
if (a == false)
|
||||
{
|
||||
bll.CreateTable(stime);
|
||||
}
|
||||
var b = bll.IsExistsTable("changdao_zhanlanguang", "electricity_data_" + etime);
|
||||
if (b == false)
|
||||
{
|
||||
bll.CreateTable(etime);
|
||||
}
|
||||
string sdate;
|
||||
sdate = now.AddHours(-1).ToString("yyyy-MM-dd HH:00:00");
|
||||
var edate = now.ToString("yyyy-01-01 00:00:00");
|
||||
var slist = bll.GetModelListDate(" EntireTime='" + sdate + "' and Reserve1='配电室高压'", stime);
|
||||
var elist = bll.GetModelListDate(" EntireTime='" + edate + "' and Reserve1='配电室高压'", etime);
|
||||
decimal? num1 = slist.Sum(x => x.EH);
|
||||
decimal? num2 = elist.Sum(x => x.EH);
|
||||
var model = new carbon_overviewData()
|
||||
{
|
||||
TotalRelease = Convert.ToDecimal(Math.Round(Convert.ToDouble(num1 - num2) / 1000 * 0.5703, 3)),
|
||||
CarbonOffset = 0,
|
||||
CarbonReduction = 0,
|
||||
};
|
||||
if (model.TotalRelease < 0)
|
||||
{
|
||||
model.TotalRelease = 0;
|
||||
}
|
||||
data.Add(model);
|
||||
string sdate;
|
||||
sdate = now.AddHours(-1).ToString("yyyy-MM-dd HH:00:00");
|
||||
var edate = now.ToString("yyyy-01-01 00:00:00");
|
||||
var stime = DateTime.Parse(sdate).ToString("yyyyMM");
|
||||
var etime = DateTime.Parse(edate).ToString("yyyyMM");
|
||||
var a = bll.IsExistsTable("changdao_zhanlanguang", "electricity_data_" + stime);
|
||||
if (a == false)
|
||||
{
|
||||
bll.CreateTable(stime);
|
||||
}
|
||||
var b = bll.IsExistsTable("changdao_zhanlanguang", "electricity_data_" + etime);
|
||||
if (b == false)
|
||||
{
|
||||
bll.CreateTable(etime);
|
||||
}
|
||||
var slist = bll.GetModelListDate(" EntireTime='" + sdate + "' and Reserve1='配电室高压'", stime);
|
||||
var elist = bll.GetModelListDate(" EntireTime='" + edate + "' and Reserve1='配电室高压'", etime);
|
||||
decimal? num1 = slist.Sum(x => x.EH);
|
||||
decimal? num2 = elist.Sum(x => x.EH);
|
||||
var model = new carbon_overviewData()
|
||||
{
|
||||
TotalRelease = Convert.ToDecimal(Math.Round(Convert.ToDouble(num1 - num2) / 1000 * 0.5703, 3)),
|
||||
CarbonOffset = 0,
|
||||
CarbonReduction = 0,
|
||||
};
|
||||
if (model.TotalRelease < 0)
|
||||
{
|
||||
model.TotalRelease = 0;
|
||||
}
|
||||
data.Add(model);
|
||||
}
|
||||
res.code = 200;
|
||||
res.msg = "成功";
|
||||
|
@ -101,7 +107,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
catch (Exception ex)
|
||||
{
|
||||
res.code = 500;
|
||||
res.msg ="失败:"+ex.Message;
|
||||
res.msg = "失败:" + ex.Message;
|
||||
}
|
||||
HttpResponseMessage result = new HttpResponseMessage { Content = new StringContent(JsonConvert.SerializeObject(res), Encoding.GetEncoding("UTF-8"), "application/json") };
|
||||
return result;
|
||||
|
|
|
@ -36,17 +36,17 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
bll.CreateTable(time);
|
||||
}
|
||||
var list = bll.GetModelListDate(" Reserve1='配电室高压'", time);
|
||||
for (int i = 1; i < time_count; i++)
|
||||
for (int i = 0; i < time_count; i++)
|
||||
{
|
||||
var jdate = now.AddHours(-i).ToString("yyyy-MM-dd HH:00:00");
|
||||
var sdate = now.AddHours(-(i + 1) ).ToString("yyyy-MM-dd HH:00:00");
|
||||
var sdate = now.AddHours(-(i + 1)).ToString("yyyy-MM-dd HH:00:00");
|
||||
var jlist = list.Where(x => x.EntireTime == Convert.ToDateTime(jdate)).ToList();
|
||||
var slist=list.Where(x=>x.EntireTime==Convert.ToDateTime(sdate)).ToList();
|
||||
var num1 = jlist.Sum(x => x.EH);
|
||||
var num2 = slist.Sum(x => x.EH);
|
||||
var model = new daily_electricityData
|
||||
{
|
||||
time = DateTime.Now.AddHours(-i).ToString("HH:00"),
|
||||
time = DateTime.Now.AddHours(-(i + 1)).ToString("HH:00"),
|
||||
EH =Convert.ToDecimal(Math.Round(Convert.ToDouble(num1 - num2),3))
|
||||
};
|
||||
if (model.EH < 0)
|
||||
|
|
|
@ -22,14 +22,14 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
var res = new get_drain_heading();
|
||||
try
|
||||
{
|
||||
var now = DateTime.Now;
|
||||
var data = new List<drain_headingData>();
|
||||
if(!string.IsNullOrEmpty(Id))
|
||||
{
|
||||
var list = bll.GetModelList("");
|
||||
var time = DateTime.Now.ToString("yyyy-MM-dd HH:00:00");
|
||||
if (Convert.ToInt32(Id) < 10)
|
||||
{
|
||||
var alist = list.Where(x => x.PollutionDischargeName.Contains("GP0"+Id) && x.EntireTime == Convert.ToDateTime(time)).ToList();
|
||||
var alist = list.Where(x => x.PollutionDischargeName.Contains("GP0"+Id)).ToList();
|
||||
foreach (var item in alist)
|
||||
{
|
||||
if (item.PollutionDischargeName.Contains("1#"))
|
||||
|
@ -37,7 +37,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
var model = new drain_headingData()
|
||||
{
|
||||
WaterName = Convert.ToInt32(Id) * 2 - 1 + "深井泵",
|
||||
WaterState = Convert.ToInt32(item.PollutionDischargeState)
|
||||
WaterState = (item.PollutionDischargeState.Value != -1 && (now - item.EntireTime.Value).TotalMinutes < 3) ? item.PollutionDischargeState.Value : -1
|
||||
};
|
||||
data.Add(model);
|
||||
}
|
||||
|
@ -46,7 +46,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
var model = new drain_headingData()
|
||||
{
|
||||
WaterName = Convert.ToInt32(Id) * 2 + "深井泵",
|
||||
WaterState = Convert.ToInt32(item.PollutionDischargeState)
|
||||
WaterState = (item.PollutionDischargeState.Value != -1 && (now - item.EntireTime.Value).TotalMinutes < 3) ? item.PollutionDischargeState.Value : -1
|
||||
};
|
||||
data.Add(model);
|
||||
}
|
||||
|
@ -54,7 +54,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
}
|
||||
else
|
||||
{
|
||||
var alist = list.Where(x => x.PollutionDischargeName.Contains("GP"+Id) && x.EntireTime == Convert.ToDateTime(time)).ToList();
|
||||
var alist = list.Where(x => x.PollutionDischargeName.Contains("GP"+Id)).ToList();
|
||||
foreach (var item in alist)
|
||||
{
|
||||
if (item.PollutionDischargeName.Contains("1#"))
|
||||
|
@ -62,7 +62,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
var model = new drain_headingData()
|
||||
{
|
||||
WaterName = Convert.ToInt32(Id) * 2 - 1 + "深井泵",
|
||||
WaterState = Convert.ToInt32(item.PollutionDischargeState)
|
||||
WaterState = (item.PollutionDischargeState.Value != -1 && (now - item.EntireTime.Value).TotalMinutes < 3) ? item.PollutionDischargeState.Value : -1
|
||||
};
|
||||
data.Add(model);
|
||||
}
|
||||
|
@ -71,7 +71,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
var model = new drain_headingData()
|
||||
{
|
||||
WaterName = Convert.ToInt32(Id) * 2 + "深井泵",
|
||||
WaterState = Convert.ToInt32(item.PollutionDischargeState)
|
||||
WaterState = (item.PollutionDischargeState.Value != -1 && (now - item.EntireTime.Value).TotalMinutes < 3) ? item.PollutionDischargeState.Value : -1
|
||||
};
|
||||
data.Add(model);
|
||||
}
|
||||
|
|
|
@ -28,14 +28,14 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
if (!string.IsNullOrEmpty(date))
|
||||
{
|
||||
var time = date + "-01 00:00:00";
|
||||
var time1=Convert.ToDateTime(time);
|
||||
var time1 = Convert.ToDateTime(time);
|
||||
var time2 = time1.AddMonths(1).AddDays(-1);
|
||||
var stime =Convert.ToDateTime(time2);
|
||||
var stime = Convert.ToDateTime(time2);
|
||||
var atime = stime.ToString("yyyyMM");
|
||||
var btime=Convert.ToDateTime(time).AddMonths(1).ToString("yyyyMM");
|
||||
var btime = Convert.ToDateTime(time).AddMonths(1).ToString("yyyyMM");
|
||||
//表名
|
||||
var date_base = ConfigurationManager.AppSettings["MySQLDataBase"].ToString();
|
||||
var a= bll.IsExistsTable(date_base, "electricity_data_" + atime);
|
||||
var a = bll.IsExistsTable(date_base, "electricity_data_" + atime);
|
||||
if (a == false)
|
||||
{
|
||||
bll.CreateTable(atime);
|
||||
|
@ -45,8 +45,17 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
{
|
||||
bll.CreateTable(btime);
|
||||
}
|
||||
var list = new List<DataService.Model.electricity_data>();
|
||||
var list1 = bll.GetModelListDate(" Reserve1='配电室高压'", atime);
|
||||
if (list1.Count() > 0)
|
||||
{
|
||||
list.AddRange(list1);
|
||||
}
|
||||
var list2 = bll.GetModelListDate(" Reserve1='配电室高压'", btime);
|
||||
if (list2.Count() > 0)
|
||||
{
|
||||
list.AddRange(list2);
|
||||
}
|
||||
var time_count = Convert.ToInt32(stime.Day);
|
||||
for (int i = 0; i < time_count; i++)
|
||||
{
|
||||
|
@ -55,25 +64,25 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
string sdate;
|
||||
if (num1 == num2)
|
||||
{
|
||||
sdate= DateTime.Now.AddHours(-1).ToString("yyyy-MM-dd HH:00:00");
|
||||
sdate = DateTime.Now.AddHours(-1).ToString("yyyy-MM-dd HH:00:00");
|
||||
}
|
||||
else
|
||||
{
|
||||
sdate =stime.AddDays(-i+1).ToString("yyyy-MM-dd 00:00:00");
|
||||
sdate = stime.AddDays(-i + 1).ToString("yyyy-MM-dd 00:00:00");
|
||||
}
|
||||
var edate=stime.AddDays(-i).ToString("yyyy-MM-dd 00:00:00");
|
||||
var alist = list1.Where(x => x.EntireTime ==Convert.ToDateTime(sdate)).ToList();
|
||||
var blist=list2.Where(x=>x.EntireTime==Convert.ToDateTime(edate)).ToList();
|
||||
var edate = stime.AddDays(-i).ToString("yyyy-MM-dd 00:00:00");
|
||||
var alist = list.Where(x => x.EntireTime == Convert.ToDateTime(sdate)).ToList();
|
||||
var blist = list.Where(x => x.EntireTime == Convert.ToDateTime(edate)).ToList();
|
||||
decimal? anum = alist.Sum(x => x.EH);
|
||||
decimal? bnum = blist.Sum(x => x.EH);
|
||||
var model = new electricity_consumptionData()
|
||||
{
|
||||
time = stime.AddDays(-i).ToString("dd"),
|
||||
EH =Convert.ToDecimal(Math.Round(Convert.ToDouble(anum - bnum),3))
|
||||
EH = Convert.ToDecimal(Math.Round(Convert.ToDouble((anum - bnum) * Convert.ToDecimal(1.229)), 3))
|
||||
};
|
||||
data.Add(model);
|
||||
}
|
||||
var adata=data.OrderBy(x=>x.time).ToList();
|
||||
var adata = data.OrderBy(x => x.time).ToList();
|
||||
res.code = 200;
|
||||
res.msg = "成功";
|
||||
res.data = adata;
|
||||
|
@ -87,7 +96,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
catch (Exception ex)
|
||||
{
|
||||
res.code = 500;
|
||||
res.msg ="失败:"+ex.Message;
|
||||
res.msg = "失败:" + ex.Message;
|
||||
}
|
||||
HttpResponseMessage result = new HttpResponseMessage { Content = new StringContent(JsonConvert.SerializeObject(res), Encoding.GetEncoding("UTF-8"), "application/json") };
|
||||
return result;
|
||||
|
|
|
@ -19,21 +19,21 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
{
|
||||
DataService.BLL.electricity_data bll = new DataService.BLL.electricity_data();
|
||||
// GET api/<controller>
|
||||
public HttpResponseMessage Get(string sdate = "",string edate="")
|
||||
public HttpResponseMessage Get(string sdate = "", string edate = "")
|
||||
{
|
||||
//表名
|
||||
var date_base = ConfigurationManager.AppSettings["MySQLDataBase"].ToString();
|
||||
var res = new get_energy_flow();
|
||||
var now=DateTime.Now;
|
||||
var now = DateTime.Now;
|
||||
try
|
||||
{
|
||||
if (!string.IsNullOrEmpty(sdate)&&!string.IsNullOrEmpty(edate))
|
||||
if (!string.IsNullOrEmpty(sdate) && !string.IsNullOrEmpty(edate))
|
||||
{
|
||||
var data = new List<energy_flowData>();
|
||||
DateTime startDate = DateTime.Parse(sdate);
|
||||
DateTime endDate = DateTime.Parse(edate);
|
||||
TimeSpan timeDifference = endDate - startDate;
|
||||
var time_day=timeDifference.Days;
|
||||
var time_day = timeDifference.Days;
|
||||
decimal? num = 0;
|
||||
#region 全部
|
||||
for (int i = 0; i <= time_day; i++)
|
||||
|
@ -45,9 +45,9 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
}
|
||||
else
|
||||
{
|
||||
ssdate = Convert.ToDateTime(edate).AddDays(-i).ToString("yyyy-MM-dd 00:00:00");
|
||||
ssdate = Convert.ToDateTime(edate).AddDays(-i + 1).ToString("yyyy-MM-dd 00:00:00");
|
||||
}
|
||||
var eedate = Convert.ToDateTime(edate).AddDays(-(i+1)).ToString("yyyy-MM-dd 00:00:00");
|
||||
var eedate = Convert.ToDateTime(edate).AddDays(-i).ToString("yyyy-MM-dd 00:00:00");
|
||||
var stime = Convert.ToDateTime(ssdate).ToString("yyyyMM");
|
||||
var etime = Convert.ToDateTime(eedate).ToString("yyyyMM");
|
||||
var a = bll.IsExistsTable(date_base, "electricity_data_" + stime);
|
||||
|
@ -60,9 +60,9 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
{
|
||||
bll.CreateTable(etime);
|
||||
}
|
||||
var alist = bll.GetModelListDate(" Reserve1!='配电室高压' and Reserve1!='电能-室外箱变' and EntireTime='"+ssdate+"'", stime);
|
||||
var blist= bll.GetModelListDate(" Reserve1!='配电室高压' and Reserve1!='电能-室外箱变' and EntireTime='" + eedate + "'", etime);
|
||||
num=Convert.ToDecimal(alist.Sum(x=>x.EH)-blist.Sum(x=>x.EH));
|
||||
var alist = bll.GetModelListDate(" Reserve1!='配电室高压' and Reserve1!='电能-室外箱变' and EntireTime='" + ssdate + "'", stime);
|
||||
var blist = bll.GetModelListDate(" Reserve1!='配电室高压' and Reserve1!='电能-室外箱变' and EntireTime='" + eedate + "'", etime);
|
||||
num += Convert.ToDecimal(alist.Sum(x => x.EH) - blist.Sum(x => x.EH));
|
||||
}
|
||||
var model = new energy_flowData()
|
||||
{
|
||||
|
@ -80,9 +80,9 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
}
|
||||
else
|
||||
{
|
||||
ssdate = Convert.ToDateTime(edate).AddDays(-i).ToString("yyyy-MM-dd 00:00:00");
|
||||
ssdate = Convert.ToDateTime(edate).AddDays(-i + 1).ToString("yyyy-MM-dd 00:00:00");
|
||||
}
|
||||
var eedate = Convert.ToDateTime(edate).AddDays(-(i + 1)).ToString("yyyy-MM-dd 00:00:00");
|
||||
var eedate = Convert.ToDateTime(edate).AddDays(-i).ToString("yyyy-MM-dd 00:00:00");
|
||||
var stime = Convert.ToDateTime(ssdate).ToString("yyyyMM");
|
||||
var etime = Convert.ToDateTime(eedate).ToString("yyyyMM");
|
||||
var a = bll.IsExistsTable(date_base, "electricity_data_" + stime);
|
||||
|
@ -97,11 +97,11 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
}
|
||||
var alist = bll.GetModelListDate(" Reserve2 like '%空调%' and EntireTime='" + ssdate + "'", stime);
|
||||
var blist = bll.GetModelListDate(" Reserve2 like '%空调%' and EntireTime='" + eedate + "'", etime);
|
||||
knum = Convert.ToDecimal(alist.Sum(x => x.EH) - blist.Sum(x => x.EH));
|
||||
knum += Convert.ToDecimal(alist.Sum(x => x.EH) - blist.Sum(x => x.EH));
|
||||
}
|
||||
var adata = new List<energy_flow>();
|
||||
var amodel = new energy_flow();
|
||||
amodel.AirConditioner =Convert.ToDecimal(Math.Round(Convert.ToDouble(knum)*1.229,3));
|
||||
amodel.AirConditioner = Convert.ToDecimal(Math.Round(Convert.ToDouble(knum) * 1.229, 3));
|
||||
#endregion
|
||||
#region 照明
|
||||
decimal? znum = 0;
|
||||
|
@ -114,9 +114,9 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
}
|
||||
else
|
||||
{
|
||||
ssdate = Convert.ToDateTime(edate).AddDays(-i).ToString("yyyy-MM-dd 00:00:00");
|
||||
ssdate = Convert.ToDateTime(edate).AddDays(-i + 1).ToString("yyyy-MM-dd 00:00:00");
|
||||
}
|
||||
var eedate = Convert.ToDateTime(edate).AddDays(-(i + 1)).ToString("yyyy-MM-dd 00:00:00");
|
||||
var eedate = Convert.ToDateTime(edate).AddDays(-i).ToString("yyyy-MM-dd 00:00:00");
|
||||
var stime = Convert.ToDateTime(ssdate).ToString("yyyyMM");
|
||||
var etime = Convert.ToDateTime(eedate).ToString("yyyyMM");
|
||||
var a = bll.IsExistsTable(date_base, "electricity_data_" + stime);
|
||||
|
@ -131,9 +131,9 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
}
|
||||
var alist = bll.GetModelListDate(" Reserve2 like '%照明%' and EntireTime='" + ssdate + "'", stime);
|
||||
var blist = bll.GetModelListDate(" Reserve2 like '%照明%' and EntireTime='" + eedate + "'", etime);
|
||||
znum = Convert.ToDecimal(alist.Sum(x => x.EH) - blist.Sum(x => x.EH));
|
||||
znum += Convert.ToDecimal(alist.Sum(x => x.EH) - blist.Sum(x => x.EH));
|
||||
}
|
||||
amodel.Illumination =Convert.ToDecimal(Math.Round(Convert.ToDouble(znum) * 1.229,3));
|
||||
amodel.Illumination = Convert.ToDecimal(Math.Round(Convert.ToDouble(znum) * 1.229, 3));
|
||||
#endregion
|
||||
#region 电梯
|
||||
decimal? dnum = 0;
|
||||
|
@ -146,9 +146,9 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
}
|
||||
else
|
||||
{
|
||||
ssdate = Convert.ToDateTime(edate).AddDays(-i).ToString("yyyy-MM-dd 00:00:00");
|
||||
ssdate = Convert.ToDateTime(edate).AddDays(-i + 1).ToString("yyyy-MM-dd 00:00:00");
|
||||
}
|
||||
var eedate = Convert.ToDateTime(edate).AddDays(-(i + 1)).ToString("yyyy-MM-dd 00:00:00");
|
||||
var eedate = Convert.ToDateTime(edate).AddDays(-i).ToString("yyyy-MM-dd 00:00:00");
|
||||
var stime = Convert.ToDateTime(ssdate).ToString("yyyyMM");
|
||||
var etime = Convert.ToDateTime(eedate).ToString("yyyyMM");
|
||||
var a = bll.IsExistsTable(date_base, "electricity_data_" + stime);
|
||||
|
@ -163,9 +163,9 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
}
|
||||
var alist = bll.GetModelListDate(" Reserve2 like '%电梯%' and EntireTime='" + ssdate + "'", stime);
|
||||
var blist = bll.GetModelListDate(" Reserve2 like '%电梯%' and EntireTime='" + eedate + "'", etime);
|
||||
dnum = Convert.ToDecimal(alist.Sum(x => x.EH) - blist.Sum(x => x.EH));
|
||||
dnum += Convert.ToDecimal(alist.Sum(x => x.EH) - blist.Sum(x => x.EH));
|
||||
}
|
||||
amodel.Elevator =Convert.ToDecimal(Math.Round(Convert.ToDouble(dnum)*1.229,3));
|
||||
amodel.Elevator = Convert.ToDecimal(Math.Round(Convert.ToDouble(dnum) * 1.229, 3));
|
||||
#endregion
|
||||
adata.Add(amodel);
|
||||
model.data = adata;
|
||||
|
|
|
@ -37,7 +37,6 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
{
|
||||
var data = new List<energy_indexingData>();
|
||||
var now = DateTime.Now;
|
||||
var list = bll.GetModelListDate("", time);
|
||||
if (date == "月")
|
||||
{
|
||||
var time_count = Convert.ToInt32(DateTime.Now.Month);
|
||||
|
@ -65,13 +64,13 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
{
|
||||
bll.CreateTable(etime);
|
||||
}
|
||||
var alist = bll.GetModelListDate(" EntireTime='" + sdate + "'", stime);
|
||||
var blist = bll.GetModelListDate(" EntireTime='" + edate + "'", etime);
|
||||
var alist = bll.GetModelListDate(" EntireTime='" + sdate + "' and Reserve1='配电室高压'", stime);
|
||||
var blist = bll.GetModelListDate(" EntireTime='" + edate + "' and Reserve1='配电室高压'", etime);
|
||||
var num = alist.Sum(x => x.EH) - blist.Sum(x => x.EH);
|
||||
var model = new energy_indexingData()
|
||||
{
|
||||
time = now.AddMonths(-i).ToString("MM月"),
|
||||
EnergyIndexing =Convert.ToDecimal(Math.Round(Convert.ToDouble( num / 26010),3))
|
||||
EnergyIndexing = Convert.ToDecimal(Math.Round(Convert.ToDouble((num * Convert.ToDecimal(1.229)) / 26010), 3))
|
||||
};
|
||||
data.Add(model);
|
||||
}
|
||||
|
@ -88,7 +87,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
}
|
||||
else
|
||||
{
|
||||
sdate = now.AddYears(-i+1).ToString("yyyy-01-01 00:00:00");
|
||||
sdate = now.AddYears(-i + 1).ToString("yyyy-01-01 00:00:00");
|
||||
}
|
||||
var edate = now.AddYears(-i).ToString("yyyy-01-01 00:00:00");
|
||||
var stime = Convert.ToDateTime(sdate).ToString("yyyyMM");
|
||||
|
@ -103,13 +102,13 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
{
|
||||
bll.CreateTable(etime);
|
||||
}
|
||||
var alist = bll.GetModelListDate(" EntireTime='"+sdate+"'", stime);
|
||||
var blist = bll.GetModelListDate(" EntireTime='" + edate + "'", etime);
|
||||
var num=alist.Sum(x=>x.EH)-blist.Sum(x=>x.EH);
|
||||
var alist = bll.GetModelListDate(" EntireTime='" + sdate + "' and Reserve1='配电室高压'", stime);
|
||||
var blist = bll.GetModelListDate(" EntireTime='" + edate + "' and Reserve1='配电室高压'", etime);
|
||||
var num = alist.Sum(x => x.EH) - blist.Sum(x => x.EH);
|
||||
var model = new energy_indexingData()
|
||||
{
|
||||
time = now.AddYears(-i).ToString("yyyy"),
|
||||
EnergyIndexing = Convert.ToDecimal(Math.Round(Convert.ToDouble(num/26010),3))
|
||||
EnergyIndexing = Convert.ToDecimal(Math.Round(Convert.ToDouble((num * Convert.ToDecimal(1.229)) / 26010), 3))
|
||||
};
|
||||
data.Add(model);
|
||||
|
||||
|
|
|
@ -23,14 +23,14 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
try
|
||||
{
|
||||
var data = new List<fault_conditionData>();
|
||||
var now = DateTime.Now;
|
||||
var list = bll.GetModelList("");
|
||||
var alist = list.Where(x => x.LightingMalfunction=="1").ToList();
|
||||
var blist = list.Where(x => x.LightingMalfunction == "0").ToList();
|
||||
var line_list = list.Where(x => !x.LightingState.Contains("bad") && (now - x.UpdateTime.Value).TotalMinutes < 3).ToList();
|
||||
var model = new fault_conditionData()
|
||||
{
|
||||
Amount = list.Count(),
|
||||
Normality = alist.Count(),
|
||||
Malfunction=blist.Count()
|
||||
Normality = line_list.Count(),
|
||||
Malfunction = list.Count() - line_list.Count()
|
||||
};
|
||||
data.Add(model);
|
||||
res.code = 200;
|
||||
|
@ -40,7 +40,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
catch (Exception ex)
|
||||
{
|
||||
res.code = 500;
|
||||
res.msg ="失败:"+ex.Message;
|
||||
res.msg = "失败:" + ex.Message;
|
||||
}
|
||||
HttpResponseMessage result = new HttpResponseMessage { Content = new StringContent(JsonConvert.SerializeObject(res), Encoding.GetEncoding("UTF-8"), "application/json") };
|
||||
return result;
|
||||
|
|
|
@ -23,13 +23,14 @@ namespace LonglslandExhibitionCenter.Controllers
|
|||
{
|
||||
var data = new List<lighting_detailData>();
|
||||
var list = bll.GetModelList("");
|
||||
var now = DateTime.Now;
|
||||
foreach (var item in list)
|
||||
{
|
||||
var model = new lighting_detailData()
|
||||
{
|
||||
name=item.LightingName,
|
||||
location=item.LightingType.Substring(0,item.LightingType.Length-3),
|
||||
state=item.LightingState
|
||||
name = item.LightingName,
|
||||
location = item.LightingType.Substring(0, item.LightingType.Length - 3),
|
||||
state = !item.LightingState.Contains("bad") && (now - item.UpdateTime.Value).TotalMinutes < 3 ? item.LightingState : "-1"
|
||||
};
|
||||
data.Add(model);
|
||||
}
|
||||
|
|
|
@ -24,16 +24,18 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
try
|
||||
{
|
||||
var data = new List<lighting_monitoringData>();
|
||||
var now = DateTime.Now;
|
||||
var list = bll.GetModelList("");
|
||||
var alist=list.Where(x=>x.LightingState=="0").ToList();
|
||||
var blist=list.Where(x=>x.LightingState=="255").ToList();
|
||||
var clist = list.Where(x => x.LightingMalfunction == "0").ToList();
|
||||
var line_list = list.Where(x => !x.LightingState.Contains("bad") && (now - x.UpdateTime.Value).TotalMinutes < 3).ToList();
|
||||
var alist = line_list.Where(x => x.LightingState == "0").ToList();
|
||||
var blist = line_list.Where(x => x.LightingState == "255").ToList();
|
||||
var clist = list.Count() - line_list.Count();
|
||||
var model = new lighting_monitoringData()
|
||||
{
|
||||
Amount = list.Count(),
|
||||
Connection = blist.Count(),
|
||||
Blackout = alist.Count(),
|
||||
Offline = clist.Count()
|
||||
Offline = clist
|
||||
};
|
||||
data.Add(model);
|
||||
res.code = 200;
|
||||
|
|
|
@ -42,7 +42,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
var blist = list.Where(x => x.Reserve2.Contains("潜污泵")).ToList();
|
||||
decimal? num2 = blist.Sum(x => x.P);
|
||||
//三级
|
||||
var clist = list.Where(x =>!x.Reserve2.Contains("梯")||!x.Reserve2.Contains("潜污泵")).ToList();
|
||||
var clist = list.Where(x =>!x.Reserve2.Contains("梯")&&!x.Reserve2.Contains("潜污泵")).ToList();
|
||||
decimal? num3 = clist.Sum(x => x.P);
|
||||
var model = new load_classifcationData()
|
||||
{
|
||||
|
|
|
@ -17,6 +17,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
public class GetLoopRankingController : ApiController
|
||||
{
|
||||
DataService.BLL.electricity_data bll = new DataService.BLL.electricity_data();
|
||||
|
||||
DataService.BLL.device_info device_bll = new DataService.BLL.device_info();
|
||||
// GET api/<controller>
|
||||
public HttpResponseMessage Get()
|
||||
{
|
||||
|
@ -37,10 +39,11 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
var jdate = DateTime.Now.AddHours(-1).ToString("yyyy-MM-dd HH:00:00");
|
||||
var sdate = DateTime.Now.ToString("yyyy-MM-dd 00:00:00");
|
||||
var list = bll.GetModelListDate("", time);
|
||||
foreach (var item in list)
|
||||
var device_list = device_bll.GetModelList("");
|
||||
foreach (var item in device_list)
|
||||
{
|
||||
var alist = list.Where(x =>x.DeviceName==item.DeviceName&& x.EntireTime == Convert.ToDateTime(jdate)&&x.ElectricityId==item.ElectricityId).ToList();
|
||||
var blist = list.Where(x =>x.DeviceName==item.DeviceName&& x.EntireTime == Convert.ToDateTime(sdate)&&x.ElectricityId==item.ElectricityId).ToList();
|
||||
var alist = list.Where(x => x.DeviceName == item.DeviceName && x.EntireTime == Convert.ToDateTime(jdate)).ToList();
|
||||
var blist = list.Where(x => x.DeviceName == item.DeviceName && x.EntireTime == Convert.ToDateTime(sdate)).ToList();
|
||||
decimal? num = alist.Sum(x => x.EH) - blist.Sum(x => x.EH);
|
||||
var model = new loop_rankingData()
|
||||
{
|
||||
|
@ -49,9 +52,9 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
};
|
||||
data.Add(model);
|
||||
}
|
||||
var adata=data.OrderByDescending(x=>x.EH).ToList();
|
||||
var adata = data.OrderByDescending(x => x.EH).ToList();
|
||||
var count = 0;
|
||||
var bdata=new List<loop_rankingData>();
|
||||
var bdata = new List<loop_rankingData>();
|
||||
foreach (var item in adata)
|
||||
{
|
||||
count++;
|
||||
|
@ -65,7 +68,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
{
|
||||
bdata.Add(model);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
res.code = 200;
|
||||
res.msg = "成功";
|
||||
|
|
|
@ -26,79 +26,91 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
{
|
||||
var data = new List<meteorological_stationData>();
|
||||
var list = bll.GetModelList("");
|
||||
var time=Convert.ToDateTime(DateTime.Now.ToString("yyyy-MM-dd HH:00:00"));
|
||||
var model1 = new meteorological_stationData();
|
||||
model1.name = "风速";
|
||||
var list1 = list.Where(x => x.MeteorologicalName == model1.name&&x.EntireTime==time).FirstOrDefault();
|
||||
var list1 = list.Where(x => x.MeteorologicalName == model1.name).FirstOrDefault();
|
||||
if (list1 == null)
|
||||
{
|
||||
model1.value = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
model1.value = Convert.ToInt32(list1.MeteorologicalValue);
|
||||
model1.value = list1.MeteorologicalValue.Value;
|
||||
}
|
||||
data.Add(model1);
|
||||
var model2=new meteorological_stationData();
|
||||
var model2 = new meteorological_stationData();
|
||||
model2.name = "雨量";
|
||||
var list2=list.Where(x=>x.MeteorologicalName==model2.name&&x.EntireTime==time).FirstOrDefault();
|
||||
var list2 = list.Where(x => x.MeteorologicalName == model2.name).FirstOrDefault();
|
||||
if (list2 == null)
|
||||
{
|
||||
model2.value = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
model2.value = Convert.ToInt32(list2.MeteorologicalValue);
|
||||
model2.value = list2.MeteorologicalValue.Value;
|
||||
}
|
||||
data.Add(model2);
|
||||
var model3 = new meteorological_stationData();
|
||||
model3.name = "光照度";
|
||||
var list3 = list.Where(x => x.MeteorologicalName == model3.name && x.EntireTime == time).FirstOrDefault();
|
||||
if(list3 == null)
|
||||
var list3 = list.Where(x => x.MeteorologicalName == model3.name).FirstOrDefault();
|
||||
if (list3 == null)
|
||||
{
|
||||
model3.value = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
model3.value = Convert.ToInt32(list3.MeteorologicalValue);
|
||||
model3.value = list3.MeteorologicalValue.Value;
|
||||
}
|
||||
data.Add(model3);
|
||||
var model4 = new meteorological_stationData();
|
||||
model4.name = "雨雪状态";
|
||||
var list4 = list.Where(x => x.MeteorologicalName == model4.name && x.EntireTime == time).FirstOrDefault();
|
||||
if(list4 == null)
|
||||
var list4 = list.Where(x => x.MeteorologicalName == model4.name).FirstOrDefault();
|
||||
if (list4 == null)
|
||||
{
|
||||
model4.value = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
model4.value = Convert.ToInt32(list4.MeteorologicalValue);
|
||||
model4.value = list4.MeteorologicalValue.Value;
|
||||
}
|
||||
data.Add(model4);
|
||||
var model5 = new meteorological_stationData();
|
||||
model5.name = "风向";
|
||||
var list5 = list.Where(x => x.MeteorologicalName == model5.name && x.EntireTime == time).FirstOrDefault();
|
||||
if(list5 == null)
|
||||
var list5 = list.Where(x => x.MeteorologicalName == model5.name).FirstOrDefault();
|
||||
if (list5 == null)
|
||||
{
|
||||
model5.value = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
model5.value = Convert.ToInt32(list5.MeteorologicalValue);
|
||||
model5.value = list5.MeteorologicalValue.Value;
|
||||
}
|
||||
data.Add(model5);
|
||||
var model6 = new meteorological_stationData();
|
||||
model6.name = "空气质量";
|
||||
var list6 = list.Where(x => x.MeteorologicalName == model6.name && x.EntireTime == time).FirstOrDefault();
|
||||
if(list6 == null)
|
||||
var list6 = list.Where(x => x.MeteorologicalName == model6.name).FirstOrDefault();
|
||||
if (list6 == null)
|
||||
{
|
||||
model6.value = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
model6.value = Convert.ToInt32(list6.MeteorologicalValue);
|
||||
model6.value = list6.MeteorologicalValue.Value;
|
||||
}
|
||||
data.Add(model6);
|
||||
|
||||
var model7 = new meteorological_stationData();
|
||||
model7.name = "空气温度";
|
||||
var list7 = list.Where(x => x.MeteorologicalName == model7.name).FirstOrDefault();
|
||||
if (list7 == null)
|
||||
{
|
||||
model7.value = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
model7.value = list7.MeteorologicalValue.Value;
|
||||
}
|
||||
data.Add(model7);
|
||||
res.code = 200;
|
||||
res.msg = "成功";
|
||||
res.data = data;
|
||||
|
|
|
@ -40,22 +40,22 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
{
|
||||
var list = bll.GetModelListDate(" Reserve2 like '%空调%'", time);
|
||||
#region 峰值
|
||||
decimal? anum=0;
|
||||
decimal? anum = 0;
|
||||
var time_count = Convert.ToInt32(now.Hour);
|
||||
for (int i = 1; i < time_count; i++)
|
||||
for (int i = 0; i < time_count; i++)
|
||||
{
|
||||
var sdate = now.AddHours(-i).ToString("yyyy-MM-dd HH:00:00");
|
||||
var edate = now.AddDays(-1).AddHours(-i).ToString("yyyy-MM-dd HH:00:00");
|
||||
var alist=list.Where(x=>x.EntireTime==Convert.ToDateTime(sdate) ).ToList();
|
||||
var blist=list.Where(x=>x.EntireTime==Convert.ToDateTime(edate)).ToList();
|
||||
var bnum=alist.Sum(x=>x.EH)-blist.Sum(x=>x.EH);
|
||||
var edate = now.AddHours(-(i + 1)).ToString("yyyy-MM-dd HH:00:00");
|
||||
var alist = list.Where(x => x.EntireTime == Convert.ToDateTime(sdate)).ToList();
|
||||
var blist = list.Where(x => x.EntireTime == Convert.ToDateTime(edate)).ToList();
|
||||
var bnum = alist.Sum(x => x.EH) - blist.Sum(x => x.EH);
|
||||
if (anum < bnum)
|
||||
{
|
||||
anum = bnum;
|
||||
}
|
||||
}
|
||||
decimal? cnum = 0;
|
||||
var time_month=Convert.ToInt32(now.Day);
|
||||
var time_month = Convert.ToInt32(now.Day);
|
||||
for (int i = 0; i < time_month; i++)
|
||||
{
|
||||
string sdate;
|
||||
|
@ -65,7 +65,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
}
|
||||
else
|
||||
{
|
||||
sdate = now.AddDays(-i+1).ToString("yyyy-MM-dd 00:00:00");
|
||||
sdate = now.AddDays(-i + 1).ToString("yyyy-MM-dd 00:00:00");
|
||||
|
||||
}
|
||||
var edate = now.AddDays(-i).ToString("yyyy-MM-dd 00:00:00");
|
||||
|
@ -79,8 +79,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
}
|
||||
var model = new system_energyData()
|
||||
{
|
||||
DayPeak = anum,
|
||||
MonthPeak = cnum,
|
||||
DayPeak = Convert.ToDecimal(Math.Round(Convert.ToDouble(anum * Convert.ToDecimal(1.229)), 3)),
|
||||
MonthPeak = Convert.ToDecimal(Math.Round(Convert.ToDouble(cnum * Convert.ToDecimal(1.229)), 3)),
|
||||
};
|
||||
#endregion
|
||||
var adata = new List<system_energy>();
|
||||
|
@ -88,7 +88,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
var jdate1 = now.AddHours(-1).ToString("yyyy-MM-dd HH:00:00");
|
||||
var sdate1 = now.ToString("yyyy-MM-dd 00:00:00");
|
||||
var qdate1 = now.AddDays(-1).ToString("yyyy-MM-dd 00:00:00");
|
||||
var jtime1=Convert.ToDateTime(jdate1).ToString("yyyyMM");
|
||||
var jtime1 = Convert.ToDateTime(jdate1).ToString("yyyyMM");
|
||||
var stime1 = Convert.ToDateTime(sdate1).ToString("yyyyMM");
|
||||
var qtime1 = Convert.ToDateTime(qdate1).ToString("yyyyMM");
|
||||
var a1 = bll.IsExistsTable(date_base, "electricity_data_" + jtime1);
|
||||
|
@ -103,7 +103,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
bll.CreateTable(stime1);
|
||||
}
|
||||
var slist1 = bll.GetModelListDate(" EntireTime='" + sdate1 + "' && Reserve2 like '%空调%'", stime1);
|
||||
var q1= bll.IsExistsTable(date_base, "electricity_data_" + qtime1);
|
||||
var q1 = bll.IsExistsTable(date_base, "electricity_data_" + qtime1);
|
||||
if (q1 == false)
|
||||
{
|
||||
bll.CreateTable(qtime1);
|
||||
|
@ -114,43 +114,43 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
var qnum1 = qlist1.Sum(x => x.EH);
|
||||
var amodel = new system_energy()
|
||||
{
|
||||
This = jnum1 - snum1,
|
||||
Last = snum1 - qnum1,
|
||||
This = Convert.ToDecimal(Math.Round(Convert.ToDouble((jnum1 - snum1) * Convert.ToDecimal(1.229)), 3)),
|
||||
Last = Convert.ToDecimal(Math.Round(Convert.ToDouble((snum1 - qnum1) * Convert.ToDecimal(1.229)), 3)),
|
||||
};
|
||||
if (amodel.This < 0)
|
||||
{
|
||||
amodel.This = 0;
|
||||
}
|
||||
if(amodel.Last < 0)
|
||||
if (amodel.Last < 0)
|
||||
{
|
||||
amodel.Last = 0;
|
||||
}
|
||||
if(amodel.This==0&&amodel.Last==0)
|
||||
if (amodel.This == 0 && amodel.Last == 0)
|
||||
{
|
||||
amodel.Year = 0;
|
||||
}
|
||||
else if (amodel.This == 0)
|
||||
else if (amodel.This == 0)
|
||||
{
|
||||
amodel.Year = -amodel.Last;
|
||||
}
|
||||
else if(amodel.Last == 0)
|
||||
else if (amodel.Last == 0)
|
||||
{
|
||||
amodel.Year = amodel.This;
|
||||
}
|
||||
else if (amodel.This > amodel.Last)
|
||||
else if (amodel.This > amodel.Last)
|
||||
{
|
||||
amodel.Year=((amodel.This/amodel.Last)*100)-100;
|
||||
amodel.Year = ((amodel.This / amodel.Last) * 100) - 100;
|
||||
}
|
||||
else if (amodel.This < amodel.Last)
|
||||
else if (amodel.This < amodel.Last)
|
||||
{
|
||||
amodel.Year = 100 - ((amodel.This / amodel.Last)*100);
|
||||
amodel.Year = 100 - ((amodel.This / amodel.Last) * 100);
|
||||
}
|
||||
adata.Add(amodel);
|
||||
#endregion
|
||||
#region 月
|
||||
var jdate2 = now.AddHours(-1).ToString("yyyy-MM-dd HH:00:00");
|
||||
var sdate2 = now.ToString("yyyy-MM-01 00:00:00");
|
||||
var qdate2 = now.AddMonths(-1).ToString("yyyy-01-01 00:00:00");
|
||||
var qdate2 = now.AddMonths(-1).ToString("yyyy-MM-01 00:00:00");
|
||||
var jtime2 = Convert.ToDateTime(jdate2).ToString("yyyyMM");
|
||||
var stime2 = Convert.ToDateTime(sdate2).ToString("yyyyMM");
|
||||
var qtime2 = Convert.ToDateTime(qdate2).ToString("yyyyMM");
|
||||
|
@ -177,8 +177,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
var qnum2 = qlist2.Sum(x => x.EH);
|
||||
var bmodel = new system_energy()
|
||||
{
|
||||
This = jnum2 - snum2,
|
||||
Last = snum2 - qnum2,
|
||||
This = Convert.ToDecimal(Math.Round(Convert.ToDouble((jnum2 - snum2) * Convert.ToDecimal(1.229)), 3)),
|
||||
Last = Convert.ToDecimal(Math.Round(Convert.ToDouble((snum2 - qnum2) * Convert.ToDecimal(1.229)), 3)),
|
||||
};
|
||||
if (bmodel.This < 0)
|
||||
{
|
||||
|
@ -214,8 +214,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
#endregion
|
||||
#region 年
|
||||
var jdate3 = now.AddHours(-1).ToString("yyyy-MM-dd HH:00:00");
|
||||
var sdate3 = now.ToString("yyyy-MM-01 00:00:00");
|
||||
var qdate3 = now.AddMonths(-1).ToString("yyyy-01-01 00:00:00");
|
||||
var sdate3 = now.ToString("yyyy-01-01 00:00:00");
|
||||
var qdate3 = now.AddYears(-1).ToString("yyyy-01-01 00:00:00");
|
||||
var jtime3 = Convert.ToDateTime(jdate3).ToString("yyyyMM");
|
||||
var stime3 = Convert.ToDateTime(sdate3).ToString("yyyyMM");
|
||||
var qtime3 = Convert.ToDateTime(qdate3).ToString("yyyyMM");
|
||||
|
@ -242,8 +242,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
var qnum3 = qlist3.Sum(x => x.EH);
|
||||
var cmodel = new system_energy()
|
||||
{
|
||||
This = jnum3 - snum3,
|
||||
Last = snum3 - qnum3,
|
||||
This = Convert.ToDecimal(Math.Round(Convert.ToDouble((jnum3 - snum3) * Convert.ToDecimal(1.229)), 3)),
|
||||
Last = Convert.ToDecimal(Math.Round(Convert.ToDouble((snum3 - qnum3) * Convert.ToDecimal(1.229)), 3)),
|
||||
};
|
||||
if (cmodel.This < 0)
|
||||
{
|
||||
|
@ -284,10 +284,10 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
#region 峰值
|
||||
decimal? anum = 0;
|
||||
var time_count = Convert.ToInt32(now.Hour);
|
||||
for (int i = 1; i < time_count; i++)
|
||||
for (int i = 0; i < time_count; i++)
|
||||
{
|
||||
var sdate = now.AddHours(-i).ToString("yyyy-MM-dd HH:00:00");
|
||||
var edate = now.AddDays(-1).AddHours(-i).ToString("yyyy-MM-dd HH:00:00");
|
||||
var edate = now.AddHours(-(i + 1)).ToString("yyyy-MM-dd HH:00:00");
|
||||
var alist = list.Where(x => x.EntireTime == Convert.ToDateTime(sdate)).ToList();
|
||||
var blist = list.Where(x => x.EntireTime == Convert.ToDateTime(edate)).ToList();
|
||||
var bnum = alist.Sum(x => x.EH) - blist.Sum(x => x.EH);
|
||||
|
@ -321,8 +321,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
}
|
||||
var model = new system_energyData()
|
||||
{
|
||||
DayPeak = anum,
|
||||
MonthPeak = cnum,
|
||||
DayPeak = Convert.ToDecimal(Math.Round(Convert.ToDouble(anum * Convert.ToDecimal(1.229)), 3)),
|
||||
MonthPeak = Convert.ToDecimal(Math.Round(Convert.ToDouble(cnum * Convert.ToDecimal(1.229)), 3)),
|
||||
};
|
||||
#endregion
|
||||
var adata = new List<system_energy>();
|
||||
|
@ -356,8 +356,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
var qnum1 = qlist1.Sum(x => x.EH);
|
||||
var amodel = new system_energy()
|
||||
{
|
||||
This = jnum1 - snum1,
|
||||
Last = snum1 - qnum1,
|
||||
This = Convert.ToDecimal(Math.Round(Convert.ToDouble((jnum1 - snum1) * Convert.ToDecimal(1.229)), 3)),
|
||||
Last = Convert.ToDecimal(Math.Round(Convert.ToDouble((snum1 - qnum1) * Convert.ToDecimal(1.229)), 3)),
|
||||
};
|
||||
if (amodel.This < 0)
|
||||
{
|
||||
|
@ -419,8 +419,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
var qnum2 = qlist2.Sum(x => x.EH);
|
||||
var bmodel = new system_energy()
|
||||
{
|
||||
This = jnum2 - snum2,
|
||||
Last = snum2 - qnum2,
|
||||
This = Convert.ToDecimal(Math.Round(Convert.ToDouble((jnum2 - snum2) * Convert.ToDecimal(1.229)), 3)),
|
||||
Last = Convert.ToDecimal(Math.Round(Convert.ToDouble((snum2 - qnum2) * Convert.ToDecimal(1.229)), 3)),
|
||||
};
|
||||
if (bmodel.This < 0)
|
||||
{
|
||||
|
@ -456,8 +456,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
#endregion
|
||||
#region 年
|
||||
var jdate3 = now.AddHours(-1).ToString("yyyy-MM-dd HH:00:00");
|
||||
var sdate3 = now.ToString("yyyy-MM-01 00:00:00");
|
||||
var qdate3 = now.AddMonths(-1).ToString("yyyy-01-01 00:00:00");
|
||||
var sdate3 = now.ToString("yyyy-01-01 00:00:00");
|
||||
var qdate3 = now.AddYears(-1).ToString("yyyy-01-01 00:00:00");
|
||||
var jtime3 = Convert.ToDateTime(jdate3).ToString("yyyyMM");
|
||||
var stime3 = Convert.ToDateTime(sdate3).ToString("yyyyMM");
|
||||
var qtime3 = Convert.ToDateTime(qdate3).ToString("yyyyMM");
|
||||
|
@ -484,8 +484,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
var qnum3 = qlist3.Sum(x => x.EH);
|
||||
var cmodel = new system_energy()
|
||||
{
|
||||
This = jnum3 - snum3,
|
||||
Last = snum3 - qnum3,
|
||||
This = Convert.ToDecimal(Math.Round(Convert.ToDouble((jnum3 - snum3) * Convert.ToDecimal(1.229)), 3)),
|
||||
Last = Convert.ToDecimal(Math.Round(Convert.ToDouble((snum3 - qnum3) * Convert.ToDecimal(1.229)), 3)),
|
||||
};
|
||||
if (cmodel.This < 0)
|
||||
{
|
||||
|
@ -526,10 +526,10 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
#region 峰值
|
||||
decimal? anum = 0;
|
||||
var time_count = Convert.ToInt32(now.Hour);
|
||||
for (int i = 1; i < time_count; i++)
|
||||
for (int i = 0; i < time_count; i++)
|
||||
{
|
||||
var sdate = now.AddHours(-i).ToString("yyyy-MM-dd HH:00:00");
|
||||
var edate = now.AddDays(-1).AddHours(-i).ToString("yyyy-MM-dd HH:00:00");
|
||||
var edate = now.AddHours(-(i + 1)).ToString("yyyy-MM-dd HH:00:00");
|
||||
var alist = list.Where(x => x.EntireTime == Convert.ToDateTime(sdate)).ToList();
|
||||
var blist = list.Where(x => x.EntireTime == Convert.ToDateTime(edate)).ToList();
|
||||
var bnum = alist.Sum(x => x.EH) - blist.Sum(x => x.EH);
|
||||
|
@ -563,8 +563,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
}
|
||||
var model = new system_energyData()
|
||||
{
|
||||
DayPeak = anum,
|
||||
MonthPeak = cnum,
|
||||
DayPeak = Convert.ToDecimal(Math.Round(Convert.ToDouble(anum * Convert.ToDecimal(1.229)), 3)),
|
||||
MonthPeak = Convert.ToDecimal(Math.Round(Convert.ToDouble(cnum * Convert.ToDecimal(1.229)), 3)),
|
||||
};
|
||||
#endregion
|
||||
var adata = new List<system_energy>();
|
||||
|
@ -598,8 +598,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
var qnum1 = qlist1.Sum(x => x.EH);
|
||||
var amodel = new system_energy()
|
||||
{
|
||||
This = jnum1 - snum1,
|
||||
Last = snum1 - qnum1,
|
||||
This = Convert.ToDecimal(Math.Round(Convert.ToDouble((jnum1 - snum1) * Convert.ToDecimal(1.229)), 3)),
|
||||
Last = Convert.ToDecimal(Math.Round(Convert.ToDouble((snum1 - qnum1) * Convert.ToDecimal(1.229)), 3)),
|
||||
};
|
||||
if (amodel.This < 0)
|
||||
{
|
||||
|
@ -634,7 +634,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
#region 月
|
||||
var jdate2 = now.AddHours(-1).ToString("yyyy-MM-dd HH:00:00");
|
||||
var sdate2 = now.ToString("yyyy-MM-01 00:00:00");
|
||||
var qdate2 = now.AddMonths(-1).ToString("yyyy-01-01 00:00:00");
|
||||
var qdate2 = now.AddMonths(-1).ToString("yyyy-MM-01 00:00:00");
|
||||
var jtime2 = Convert.ToDateTime(jdate2).ToString("yyyyMM");
|
||||
var stime2 = Convert.ToDateTime(sdate2).ToString("yyyyMM");
|
||||
var qtime2 = Convert.ToDateTime(qdate2).ToString("yyyyMM");
|
||||
|
@ -661,8 +661,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
var qnum2 = qlist2.Sum(x => x.EH);
|
||||
var bmodel = new system_energy()
|
||||
{
|
||||
This = jnum2 - snum2,
|
||||
Last = snum2 - qnum2,
|
||||
This = Convert.ToDecimal(Math.Round(Convert.ToDouble((jnum2 - snum2) * Convert.ToDecimal(1.229)), 3)),
|
||||
Last = Convert.ToDecimal(Math.Round(Convert.ToDouble((snum2 - qnum2) * Convert.ToDecimal(1.229)), 3)),
|
||||
};
|
||||
if (bmodel.This < 0)
|
||||
{
|
||||
|
@ -698,8 +698,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
#endregion
|
||||
#region 年
|
||||
var jdate3 = now.AddHours(-1).ToString("yyyy-MM-dd HH:00:00");
|
||||
var sdate3 = now.ToString("yyyy-MM-01 00:00:00");
|
||||
var qdate3 = now.AddMonths(-1).ToString("yyyy-01-01 00:00:00");
|
||||
var sdate3 = now.ToString("yyyy-01-01 00:00:00");
|
||||
var qdate3 = now.AddYears(-1).ToString("yyyy-01-01 00:00:00");
|
||||
var jtime3 = Convert.ToDateTime(jdate3).ToString("yyyyMM");
|
||||
var stime3 = Convert.ToDateTime(sdate3).ToString("yyyyMM");
|
||||
var qtime3 = Convert.ToDateTime(qdate3).ToString("yyyyMM");
|
||||
|
@ -726,8 +726,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
var qnum3 = qlist3.Sum(x => x.EH);
|
||||
var cmodel = new system_energy()
|
||||
{
|
||||
This = jnum3 - snum3,
|
||||
Last = snum3 - qnum3,
|
||||
This = Convert.ToDecimal(Math.Round(Convert.ToDouble((jnum3 - snum3) * Convert.ToDecimal(1.229)), 3)),
|
||||
Last = Convert.ToDecimal(Math.Round(Convert.ToDouble((snum3 - qnum3) * Convert.ToDecimal(1.229)), 3)),
|
||||
};
|
||||
if (cmodel.This < 0)
|
||||
{
|
||||
|
@ -768,10 +768,10 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
#region 峰值
|
||||
decimal? anum = 0;
|
||||
var time_count = Convert.ToInt32(now.Hour);
|
||||
for (int i = 1; i < time_count; i++)
|
||||
for (int i = 0; i < time_count; i++)
|
||||
{
|
||||
var sdate = now.AddHours(-i).ToString("yyyy-MM-dd HH:00:00");
|
||||
var edate = now.AddDays(-1).AddHours(-i).ToString("yyyy-MM-dd HH:00:00");
|
||||
var edate = now.AddHours(-(i + 1)).ToString("yyyy-MM-dd HH:00:00");
|
||||
var alist = list.Where(x => x.EntireTime == Convert.ToDateTime(sdate)).ToList();
|
||||
var blist = list.Where(x => x.EntireTime == Convert.ToDateTime(edate)).ToList();
|
||||
var bnum = alist.Sum(x => x.EH) - blist.Sum(x => x.EH);
|
||||
|
@ -805,8 +805,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
}
|
||||
var model = new system_energyData()
|
||||
{
|
||||
DayPeak = anum,
|
||||
MonthPeak = cnum,
|
||||
DayPeak = Convert.ToDecimal(Math.Round(Convert.ToDouble(anum * Convert.ToDecimal(1.229)), 3)),
|
||||
MonthPeak = Convert.ToDecimal(Math.Round(Convert.ToDouble(cnum * Convert.ToDecimal(1.229)), 3)),
|
||||
};
|
||||
#endregion
|
||||
var adata = new List<system_energy>();
|
||||
|
@ -840,8 +840,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
var qnum1 = qlist1.Sum(x => x.EH);
|
||||
var amodel = new system_energy()
|
||||
{
|
||||
This = jnum1 - snum1,
|
||||
Last = snum1 - qnum1,
|
||||
This = Convert.ToDecimal(Math.Round(Convert.ToDouble((jnum1 - snum1) * Convert.ToDecimal(1.229)), 3)),
|
||||
Last = Convert.ToDecimal(Math.Round(Convert.ToDouble((snum1 - qnum1) * Convert.ToDecimal(1.229)), 3)),
|
||||
};
|
||||
if (amodel.This < 0)
|
||||
{
|
||||
|
@ -876,7 +876,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
#region 月
|
||||
var jdate2 = now.AddHours(-1).ToString("yyyy-MM-dd HH:00:00");
|
||||
var sdate2 = now.ToString("yyyy-MM-01 00:00:00");
|
||||
var qdate2 = now.AddMonths(-1).ToString("yyyy-01-01 00:00:00");
|
||||
var qdate2 = now.AddMonths(-1).ToString("yyyy-MM-01 00:00:00");
|
||||
var jtime2 = Convert.ToDateTime(jdate2).ToString("yyyyMM");
|
||||
var stime2 = Convert.ToDateTime(sdate2).ToString("yyyyMM");
|
||||
var qtime2 = Convert.ToDateTime(qdate2).ToString("yyyyMM");
|
||||
|
@ -903,8 +903,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
var qnum2 = qlist2.Sum(x => x.EH);
|
||||
var bmodel = new system_energy()
|
||||
{
|
||||
This = jnum2 - snum2,
|
||||
Last = snum2 - qnum2,
|
||||
This = Convert.ToDecimal(Math.Round(Convert.ToDouble((jnum2 - snum2) * Convert.ToDecimal(1.229)), 3)),
|
||||
Last = Convert.ToDecimal(Math.Round(Convert.ToDouble((snum2 - qnum2) * Convert.ToDecimal(1.229)), 3)),
|
||||
};
|
||||
if (bmodel.This < 0)
|
||||
{
|
||||
|
@ -940,8 +940,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
#endregion
|
||||
#region 年
|
||||
var jdate3 = now.AddHours(-1).ToString("yyyy-MM-dd HH:00:00");
|
||||
var sdate3 = now.ToString("yyyy-MM-01 00:00:00");
|
||||
var qdate3 = now.AddMonths(-1).ToString("yyyy-01-01 00:00:00");
|
||||
var sdate3 = now.ToString("yyyy-01-01 00:00:00");
|
||||
var qdate3 = now.AddYears(-1).ToString("yyyy-01-01 00:00:00");
|
||||
var jtime3 = Convert.ToDateTime(jdate3).ToString("yyyyMM");
|
||||
var stime3 = Convert.ToDateTime(sdate3).ToString("yyyyMM");
|
||||
var qtime3 = Convert.ToDateTime(qdate3).ToString("yyyyMM");
|
||||
|
@ -968,8 +968,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
var qnum3 = qlist3.Sum(x => x.EH);
|
||||
var cmodel = new system_energy()
|
||||
{
|
||||
This = jnum3 - snum3,
|
||||
Last = snum3 - qnum3,
|
||||
This = Convert.ToDecimal(Math.Round(Convert.ToDouble((jnum3 - snum3) * Convert.ToDecimal(1.229)), 3)),
|
||||
Last = Convert.ToDecimal(Math.Round(Convert.ToDouble((snum3 - qnum3) * Convert.ToDecimal(1.229)), 3)),
|
||||
};
|
||||
if (cmodel.This < 0)
|
||||
{
|
||||
|
@ -1010,10 +1010,10 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
#region 峰值
|
||||
decimal? anum = 0;
|
||||
var time_count = Convert.ToInt32(now.Hour);
|
||||
for (int i = 1; i < time_count; i++)
|
||||
for (int i = 0; i < time_count; i++)
|
||||
{
|
||||
var sdate = now.AddHours(-i).ToString("yyyy-MM-dd HH:00:00");
|
||||
var edate = now.AddDays(-1).AddHours(-i).ToString("yyyy-MM-dd HH:00:00");
|
||||
var edate = now.AddHours(-(i + 1)).ToString("yyyy-MM-dd HH:00:00");
|
||||
var alist = list.Where(x => x.EntireTime == Convert.ToDateTime(sdate)).ToList();
|
||||
var blist = list.Where(x => x.EntireTime == Convert.ToDateTime(edate)).ToList();
|
||||
var bnum = alist.Sum(x => x.EH) - blist.Sum(x => x.EH);
|
||||
|
@ -1047,8 +1047,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
}
|
||||
var model = new system_energyData()
|
||||
{
|
||||
DayPeak = anum,
|
||||
MonthPeak = cnum,
|
||||
DayPeak = Convert.ToDecimal(Math.Round(Convert.ToDouble(anum * Convert.ToDecimal(1.229)), 3)),
|
||||
MonthPeak = Convert.ToDecimal(Math.Round(Convert.ToDouble(cnum * Convert.ToDecimal(1.229)), 3)),
|
||||
};
|
||||
#endregion
|
||||
var adata = new List<system_energy>();
|
||||
|
@ -1082,8 +1082,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
var qnum1 = qlist1.Sum(x => x.EH);
|
||||
var amodel = new system_energy()
|
||||
{
|
||||
This = jnum1 - snum1,
|
||||
Last = snum1 - qnum1,
|
||||
This = Convert.ToDecimal(Math.Round(Convert.ToDouble((jnum1 - snum1) * Convert.ToDecimal(1.229)), 3)),
|
||||
Last = Convert.ToDecimal(Math.Round(Convert.ToDouble((snum1 - qnum1) * Convert.ToDecimal(1.229)), 3)),
|
||||
};
|
||||
if (amodel.This < 0)
|
||||
{
|
||||
|
@ -1118,7 +1118,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
#region 月
|
||||
var jdate2 = now.AddHours(-1).ToString("yyyy-MM-dd HH:00:00");
|
||||
var sdate2 = now.ToString("yyyy-MM-01 00:00:00");
|
||||
var qdate2 = now.AddMonths(-1).ToString("yyyy-01-01 00:00:00");
|
||||
var qdate2 = now.AddMonths(-1).ToString("yyyy-MM-01 00:00:00");
|
||||
var jtime2 = Convert.ToDateTime(jdate2).ToString("yyyyMM");
|
||||
var stime2 = Convert.ToDateTime(sdate2).ToString("yyyyMM");
|
||||
var qtime2 = Convert.ToDateTime(qdate2).ToString("yyyyMM");
|
||||
|
@ -1145,8 +1145,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
var qnum2 = qlist2.Sum(x => x.EH);
|
||||
var bmodel = new system_energy()
|
||||
{
|
||||
This = jnum2 - snum2,
|
||||
Last = snum2 - qnum2,
|
||||
This = Convert.ToDecimal(Math.Round(Convert.ToDouble((jnum2 - snum2) * Convert.ToDecimal(1.229)), 3)),
|
||||
Last = Convert.ToDecimal(Math.Round(Convert.ToDouble((snum2 - qnum2) * Convert.ToDecimal(1.229)), 3)),
|
||||
};
|
||||
if (bmodel.This < 0)
|
||||
{
|
||||
|
@ -1182,8 +1182,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
#endregion
|
||||
#region 年
|
||||
var jdate3 = now.AddHours(-1).ToString("yyyy-MM-dd HH:00:00");
|
||||
var sdate3 = now.ToString("yyyy-MM-01 00:00:00");
|
||||
var qdate3 = now.AddMonths(-1).ToString("yyyy-01-01 00:00:00");
|
||||
var sdate3 = now.ToString("yyyy-01-01 00:00:00");
|
||||
var qdate3 = now.AddYears(-1).ToString("yyyy-01-01 00:00:00");
|
||||
var jtime3 = Convert.ToDateTime(jdate3).ToString("yyyyMM");
|
||||
var stime3 = Convert.ToDateTime(sdate3).ToString("yyyyMM");
|
||||
var qtime3 = Convert.ToDateTime(qdate3).ToString("yyyyMM");
|
||||
|
@ -1210,8 +1210,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
var qnum3 = qlist3.Sum(x => x.EH);
|
||||
var cmodel = new system_energy()
|
||||
{
|
||||
This = jnum3 - snum3,
|
||||
Last = snum3 - qnum3,
|
||||
This = Convert.ToDecimal(Math.Round(Convert.ToDouble((jnum3 - snum3) * Convert.ToDecimal(1.229)), 3)),
|
||||
Last = Convert.ToDecimal(Math.Round(Convert.ToDouble((snum3 - qnum3) * Convert.ToDecimal(1.229)), 3)),
|
||||
};
|
||||
if (cmodel.This < 0)
|
||||
{
|
||||
|
|
|
@ -24,31 +24,31 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
var res = new get_water_draining();
|
||||
try
|
||||
{
|
||||
var now = DateTime.Now;
|
||||
var data = new List<water_drainingData>();
|
||||
var time = DateTime.Now.ToString("yyyy-MM-dd HH:00:00");
|
||||
var list = bll.GetModelList(" EntireTime='"+time+"'");
|
||||
var list = bll.GetModelList("");
|
||||
for (int i = 1; i < 15; i++)
|
||||
{
|
||||
List<DataService.Model.pollution_discharge> alist;
|
||||
if (i >= 10)
|
||||
{
|
||||
alist = list.Where(x => x.PollutionDischargeName.Contains("GP" + i)).ToList();
|
||||
alist = list.Where(x => x.PollutionDischargeName.Contains("GP" + i)).ToList();
|
||||
}
|
||||
else
|
||||
{
|
||||
alist = list.Where(x => x.PollutionDischargeName.Contains("GP0" + i)).ToList();
|
||||
alist = list.Where(x => x.PollutionDischargeName.Contains("GP0" + i)).ToList();
|
||||
}
|
||||
var model = new water_drainingData()
|
||||
{
|
||||
WaterName = i + "号排水点",
|
||||
};
|
||||
var adata=new List<water_draining>();
|
||||
var adata = new List<water_draining>();
|
||||
var blist = alist.Where(x => x.PollutionDischargeName.Contains("1#水泵")).ToList();
|
||||
foreach (var item in blist)
|
||||
{
|
||||
var amodel = new water_draining();
|
||||
amodel.DrainingName = i*2-1 + "#水泵";
|
||||
amodel.DrainingState = Convert.ToInt32(item.PollutionDischargeState);
|
||||
amodel.DrainingName = i * 2 - 1 + "#水泵";
|
||||
amodel.DrainingState = (item.PollutionDischargeState.Value != -1 && (now - item.EntireTime.Value).TotalMinutes < 3) ? item.PollutionDischargeState.Value : -1;
|
||||
adata.Add(amodel);
|
||||
}
|
||||
var clist = alist.Where(x => x.PollutionDischargeName.Contains("2#水泵")).ToList();
|
||||
|
@ -56,9 +56,9 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
{
|
||||
var amodel1 = new water_draining()
|
||||
{
|
||||
DrainingName = i*2+"#水泵",
|
||||
DrainingState = Convert.ToInt32(item.PollutionDischargeState)
|
||||
};
|
||||
DrainingName = i * 2 + "#水泵",
|
||||
DrainingState = (item.PollutionDischargeState.Value != -1 && (now - item.EntireTime.Value).TotalMinutes < 3) ? item.PollutionDischargeState.Value : -1
|
||||
};
|
||||
adata.Add(amodel1);
|
||||
}
|
||||
model.list = adata;
|
||||
|
|
|
@ -36,52 +36,52 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
var Number = item.LightingNumber;
|
||||
var Id = item.ClientId;
|
||||
var clist = bll.GetModelList("").Where(x => x.LightingNumber == Number && x.LightingType == Type && x.ClientId == Id).ToList();
|
||||
if (name == "全开")
|
||||
{
|
||||
foreach (var aitem in clist)
|
||||
{
|
||||
var model = new DataService.Model.lighting_info()
|
||||
{
|
||||
LightingId = aitem.LightingId,
|
||||
LightingNumber = aitem.LightingNumber,
|
||||
LightingName = aitem.LightingName,
|
||||
LightingType = aitem.LightingType,
|
||||
LightingState = "255",
|
||||
LightingMalfunction = aitem.LightingMalfunction,
|
||||
PointerCode = aitem.PointerCode,
|
||||
ClientId = aitem.ClientId,
|
||||
Reserve1 = aitem.Reserve1,
|
||||
Reserve2 = aitem.Reserve2,
|
||||
Reserve3 = aitem.Reserve3,
|
||||
Reserve4 = aitem.Reserve4,
|
||||
Reserve5 = aitem.Reserve5,
|
||||
};
|
||||
bll.Update(model);
|
||||
}
|
||||
}
|
||||
if (name == "全关")
|
||||
{
|
||||
foreach (var aitem in clist)
|
||||
{
|
||||
var model = new DataService.Model.lighting_info()
|
||||
{
|
||||
LightingId = aitem.LightingId,
|
||||
LightingNumber = aitem.LightingNumber,
|
||||
LightingName = aitem.LightingName,
|
||||
LightingType = aitem.LightingType,
|
||||
LightingState = "0",
|
||||
LightingMalfunction = aitem.LightingMalfunction,
|
||||
PointerCode = aitem.PointerCode,
|
||||
ClientId = aitem.ClientId,
|
||||
Reserve1 = aitem.Reserve1,
|
||||
Reserve2 = aitem.Reserve2,
|
||||
Reserve3 = aitem.Reserve3,
|
||||
Reserve4 = aitem.Reserve4,
|
||||
Reserve5 = aitem.Reserve5,
|
||||
};
|
||||
bll.Update(model);
|
||||
}
|
||||
}
|
||||
//if (name == "全开")
|
||||
//{
|
||||
// foreach (var aitem in clist)
|
||||
// {
|
||||
// var model = new DataService.Model.lighting_info()
|
||||
// {
|
||||
// LightingId = aitem.LightingId,
|
||||
// LightingNumber = aitem.LightingNumber,
|
||||
// LightingName = aitem.LightingName,
|
||||
// LightingType = aitem.LightingType,
|
||||
// LightingState = "255",
|
||||
// LightingMalfunction = aitem.LightingMalfunction,
|
||||
// PointerCode = aitem.PointerCode,
|
||||
// ClientId = aitem.ClientId,
|
||||
// Reserve1 = aitem.Reserve1,
|
||||
// Reserve2 = aitem.Reserve2,
|
||||
// Reserve3 = aitem.Reserve3,
|
||||
// Reserve4 = aitem.Reserve4,
|
||||
// Reserve5 = aitem.Reserve5,
|
||||
// };
|
||||
// bll.Update(model);
|
||||
// }
|
||||
//}
|
||||
//if (name == "全关")
|
||||
//{
|
||||
// foreach (var aitem in clist)
|
||||
// {
|
||||
// var model = new DataService.Model.lighting_info()
|
||||
// {
|
||||
// LightingId = aitem.LightingId,
|
||||
// LightingNumber = aitem.LightingNumber,
|
||||
// LightingName = aitem.LightingName,
|
||||
// LightingType = aitem.LightingType,
|
||||
// LightingState = "0",
|
||||
// LightingMalfunction = aitem.LightingMalfunction,
|
||||
// PointerCode = aitem.PointerCode,
|
||||
// ClientId = aitem.ClientId,
|
||||
// Reserve1 = aitem.Reserve1,
|
||||
// Reserve2 = aitem.Reserve2,
|
||||
// Reserve3 = aitem.Reserve3,
|
||||
// Reserve4 = aitem.Reserve4,
|
||||
// Reserve5 = aitem.Reserve5,
|
||||
// };
|
||||
// bll.Update(model);
|
||||
// }
|
||||
//}
|
||||
var dlist = bll.GetModelList("").Where(x => x.LightingNumber == Number && x.LightingType == Type && x.ClientId == Id).ToList();
|
||||
log4net.Config.XmlConfigurator.Configure();
|
||||
log = log4net.LogManager.GetLogger("loginfo");
|
||||
|
@ -95,6 +95,14 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
controlData.b.dl = new Dictionary<string, string>();
|
||||
foreach (var citem in dlist)
|
||||
{
|
||||
if (name == "全开")
|
||||
{
|
||||
citem.LightingState = "255";
|
||||
}
|
||||
if (name == "全关")
|
||||
{
|
||||
citem.LightingState = "0";
|
||||
}
|
||||
controlData.b.dl["" + citem.PointerCode + ""] = "" + citem.LightingState + "";
|
||||
}
|
||||
data.Add(controlData);
|
||||
|
|
|
@ -25,30 +25,30 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
{
|
||||
if (!string.IsNullOrEmpty(name) && !string.IsNullOrEmpty(value))
|
||||
{
|
||||
|
||||
var list = bll.GetModelList("");
|
||||
var alist = list.Where(x => x.LightingId == name).FirstOrDefault();
|
||||
var Number = alist.LightingNumber;
|
||||
var Type = alist.LightingType;
|
||||
var Id = alist.ClientId;
|
||||
var model = new DataService.Model.lighting_info()
|
||||
{
|
||||
LightingId = alist.LightingId,
|
||||
LightingNumber = alist.LightingNumber,
|
||||
LightingName = alist.LightingName,
|
||||
LightingType = alist.LightingType,
|
||||
LightingState = value,
|
||||
LightingMalfunction = alist.LightingMalfunction,
|
||||
PointerCode = alist.PointerCode,
|
||||
ClientId = alist.ClientId,
|
||||
Reserve1 = alist.Reserve1,
|
||||
Reserve2 = alist.Reserve2,
|
||||
Reserve3 = alist.Reserve3,
|
||||
Reserve4 = alist.Reserve4,
|
||||
Reserve5 = alist.Reserve5,
|
||||
};
|
||||
bll.Update(model);
|
||||
var blist = bll.GetModelList("").Where(x => x.LightingNumber == Number&&x.LightingType==Type&&x.ClientId==Id).ToList();
|
||||
var code = alist.PointerCode;
|
||||
//var model = new DataService.Model.lighting_info()
|
||||
//{
|
||||
// LightingId = alist.LightingId,
|
||||
// LightingNumber = alist.LightingNumber,
|
||||
// LightingName = alist.LightingName,
|
||||
// LightingType = alist.LightingType,
|
||||
// LightingState = value,
|
||||
// LightingMalfunction = alist.LightingMalfunction,
|
||||
// PointerCode = alist.PointerCode,
|
||||
// ClientId = alist.ClientId,
|
||||
// Reserve1 = alist.Reserve1,
|
||||
// Reserve2 = alist.Reserve2,
|
||||
// Reserve3 = alist.Reserve3,
|
||||
// Reserve4 = alist.Reserve4,
|
||||
// Reserve5 = alist.Reserve5,
|
||||
//};
|
||||
//bll.Update(model);
|
||||
var blist = bll.GetModelList("").Where(x => x.LightingNumber == Number && x.LightingType == Type && x.ClientId == Id).ToList();
|
||||
|
||||
log4net.Config.XmlConfigurator.Configure();
|
||||
log = log4net.LogManager.GetLogger("loginfo");
|
||||
|
@ -62,10 +62,14 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
controlData.b.dl = new Dictionary<string, string>();
|
||||
foreach (var item in blist)
|
||||
{
|
||||
if (item.PointerCode == code)
|
||||
{
|
||||
item.LightingState = value;
|
||||
}
|
||||
controlData.b.dl["" + item.PointerCode + ""] = "" + item.LightingState + "";
|
||||
}
|
||||
mqqt.MqttClientStart();
|
||||
mqqt.Publish("/gc/data/"+Id, "J" + JsonConvert.SerializeObject(controlData));
|
||||
mqqt.Publish("/gc/data/" + Id, "J" + JsonConvert.SerializeObject(controlData));
|
||||
|
||||
res.code = 200;
|
||||
res.msg = "成功";
|
||||
|
|
|
@ -8,6 +8,7 @@ using System.Collections.Generic;
|
|||
using System.Linq;
|
||||
using System.Net;
|
||||
using System.Net.Http;
|
||||
using System.Security.Policy;
|
||||
using System.Text;
|
||||
using System.Web.Http;
|
||||
|
||||
|
@ -22,84 +23,49 @@ namespace LonglslandExhibitionCenter.Controllers.api
|
|||
DataService.BLL.lighting_info bll = new DataService.BLL.lighting_info();
|
||||
public HttpResponseMessage Get(string name = "", string value = "")
|
||||
{
|
||||
var res = new get_control_lighting();
|
||||
var res = new get_single_switch();
|
||||
try
|
||||
{
|
||||
if (!string.IsNullOrEmpty(name) && !string.IsNullOrEmpty(value))
|
||||
{
|
||||
var data = new List<data>();
|
||||
var list = bll.GetModelList("");
|
||||
var alist = list.Where(x => x.LightingType == name).ToList();
|
||||
var blist = alist.FirstOrDefault();
|
||||
var Type = blist.LightingType;
|
||||
var Number= blist.LightingNumber;
|
||||
var Id = blist.ClientId;
|
||||
if (value == "全开")
|
||||
var alist = list.Where(x => x.LightingType == name).DistinctBy(x => x.LightingType).ToList();
|
||||
foreach (var blist in alist)
|
||||
{
|
||||
foreach (var item in alist)
|
||||
{
|
||||
var model = new DataService.Model.lighting_info()
|
||||
{
|
||||
LightingId = item.LightingId,
|
||||
LightingNumber = item.LightingNumber,
|
||||
LightingName = item.LightingName,
|
||||
LightingType = item.LightingType,
|
||||
LightingState = "255",
|
||||
LightingMalfunction = item.LightingMalfunction,
|
||||
PointerCode = item.PointerCode,
|
||||
ClientId = item.ClientId,
|
||||
Reserve1 = item.Reserve1,
|
||||
Reserve2 = item.Reserve2,
|
||||
Reserve3 = item.Reserve3,
|
||||
Reserve4 = item.Reserve4,
|
||||
Reserve5 = item.Reserve5,
|
||||
};
|
||||
bll.Update(model);
|
||||
}
|
||||
}
|
||||
if (value == "全关")
|
||||
{
|
||||
foreach (var item in alist)
|
||||
{
|
||||
var model = new DataService.Model.lighting_info()
|
||||
{
|
||||
LightingId = item.LightingId,
|
||||
LightingNumber = item.LightingNumber,
|
||||
LightingName = item.LightingName,
|
||||
LightingType = item.LightingType,
|
||||
LightingState = "0",
|
||||
LightingMalfunction = item.LightingMalfunction,
|
||||
PointerCode = item.PointerCode,
|
||||
ClientId = item.ClientId,
|
||||
Reserve1 = item.Reserve1,
|
||||
Reserve2 = item.Reserve2,
|
||||
Reserve3 = item.Reserve3,
|
||||
Reserve4 = item.Reserve4,
|
||||
Reserve5 = item.Reserve5,
|
||||
};
|
||||
bll.Update(model);
|
||||
}
|
||||
}
|
||||
var clist = bll.GetModelList("").Where(x => x.LightingNumber == Number && x.LightingType == Type && x.ClientId == Id).ToList();
|
||||
log4net.Config.XmlConfigurator.Configure();
|
||||
log = log4net.LogManager.GetLogger("loginfo");
|
||||
var mqqt = new MqttClientService();
|
||||
data controlData = new data();
|
||||
controlData.h = new HeaderData();
|
||||
controlData.h.rt = Number;
|
||||
var Type = blist.LightingType;
|
||||
var Number = blist.LightingNumber;
|
||||
var Id = blist.ClientId;
|
||||
var clist = bll.GetModelList("").Where(x => x.LightingNumber == Number && x.LightingType == Type && x.ClientId == Id).ToList();
|
||||
log4net.Config.XmlConfigurator.Configure();
|
||||
log = log4net.LogManager.GetLogger("loginfo");
|
||||
var mqqt = new MqttClientService();
|
||||
data controlData = new data();
|
||||
controlData.h = new HeaderData();
|
||||
controlData.h.rt = Number;
|
||||
|
||||
// 如果需要同时设置多个数据项,可以使用字典
|
||||
controlData.b = new BodyData();
|
||||
controlData.b.dl = new Dictionary<string, string>();
|
||||
foreach (var item in clist)
|
||||
{
|
||||
controlData.b.dl["" + item.PointerCode + ""] = "" + item.LightingState + "";
|
||||
// 如果需要同时设置多个数据项,可以使用字典
|
||||
controlData.b = new BodyData();
|
||||
controlData.b.dl = new Dictionary<string, string>();
|
||||
foreach (var item in clist)
|
||||
{
|
||||
if (value == "全开")
|
||||
{
|
||||
item.LightingState = "255";
|
||||
}
|
||||
if (value == "全关")
|
||||
{
|
||||
item.LightingState = "0";
|
||||
}
|
||||
controlData.b.dl["" + item.PointerCode + ""] = "" + item.LightingState + "";
|
||||
}
|
||||
data.Add(controlData);
|
||||
mqqt.MqttClientStart();
|
||||
mqqt.Publish("/gc/data/" + Id, "J" + JsonConvert.SerializeObject(controlData));
|
||||
}
|
||||
mqqt.MqttClientStart();
|
||||
mqqt.Publish("/gc/data/" + Id, "J" + JsonConvert.SerializeObject(controlData));
|
||||
|
||||
res.code = 200;
|
||||
res.msg = "成功";
|
||||
res.data = controlData;
|
||||
res.data = data;
|
||||
|
||||
}
|
||||
else
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
<IISExpressUseClassicPipelineMode />
|
||||
<UseGlobalApplicationHostFile />
|
||||
<LastActiveSolutionConfig>Debug|Any CPU</LastActiveSolutionConfig>
|
||||
<NameOfLastUsedPublishProfile>E:\林谷项目\长岛展览馆项目\后端\LonglslandExhibitionCenter\LonglslandExhibitionCenter\Properties\PublishProfiles\FolderProfile.pubxml</NameOfLastUsedPublishProfile>
|
||||
<NameOfLastUsedPublishProfile>E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\Properties\PublishProfiles\FolderProfile.pubxml</NameOfLastUsedPublishProfile>
|
||||
</PropertyGroup>
|
||||
<ProjectExtensions>
|
||||
<VisualStudio>
|
||||
|
|
|
@ -4,14 +4,15 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
|||
-->
|
||||
<Project>
|
||||
<PropertyGroup>
|
||||
<DeleteExistingFiles>false</DeleteExistingFiles>
|
||||
<DeleteExistingFiles>true</DeleteExistingFiles>
|
||||
<ExcludeApp_Data>false</ExcludeApp_Data>
|
||||
<LaunchSiteAfterPublish>true</LaunchSiteAfterPublish>
|
||||
<LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration>
|
||||
<LastUsedPlatform>Any CPU</LastUsedPlatform>
|
||||
<PublishProvider>FileSystem</PublishProvider>
|
||||
<PublishUrl>E:\林谷项目\长岛展览馆项目\发布文件</PublishUrl>
|
||||
<PublishUrl>E:\项目\长岛展览馆\发布文件</PublishUrl>
|
||||
<WebPublishMethod>FileSystem</WebPublishMethod>
|
||||
<_TargetId>Folder</_TargetId>
|
||||
<SiteUrlToLaunchAfterPublish />
|
||||
</PropertyGroup>
|
||||
</Project>
|
|
@ -4,352 +4,352 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
|||
-->
|
||||
<Project>
|
||||
<PropertyGroup>
|
||||
<_PublishTargetUrl>E:\林谷项目\长岛展览馆项目\发布文件</_PublishTargetUrl>
|
||||
<History>True|2024-04-15T00:46:26.1708600Z;True|2024-04-15T08:43:47.1675051+08:00;True|2024-03-20T09:52:41.5444999+08:00;True|2024-03-20T09:52:28.9463180+08:00;True|2024-03-19T16:26:27.2407972+08:00;True|2024-03-19T15:50:07.1464827+08:00;True|2024-03-14T15:48:46.0852411+08:00;True|2024-03-12T11:15:35.2934238+08:00;True|2024-03-07T16:29:08.9381292+08:00;True|2024-03-05T14:31:05.6269677+08:00;True|2024-03-04T14:37:08.7040845+08:00;True|2024-02-28T11:11:35.8506164+08:00;</History>
|
||||
<_PublishTargetUrl>E:\项目\长岛展览馆\发布文件</_PublishTargetUrl>
|
||||
<History>True|2024-08-11T12:53:54.5556138Z;True|2024-08-10T16:00:18.6655642+08:00;True|2024-08-10T10:41:02.8962798+08:00;True|2024-08-10T10:31:34.0807175+08:00;True|2024-08-10T10:11:01.4518697+08:00;True|2024-08-09T17:46:23.3977253+08:00;True|2024-08-09T14:57:51.6409237+08:00;True|2024-08-09T14:12:02.8124286+08:00;True|2024-08-09T13:57:09.6566238+08:00;True|2024-08-09T13:55:09.1957591+08:00;True|2024-08-09T13:53:12.0978886+08:00;True|2024-08-09T10:21:25.5364378+08:00;True|2024-08-08T17:30:17.0495176+08:00;True|2024-08-08T14:01:01.6427032+08:00;True|2024-08-08T10:26:20.9380493+08:00;True|2024-08-06T16:16:42.4971554+08:00;True|2024-04-15T08:46:26.1708600+08:00;True|2024-04-15T08:43:47.1675051+08:00;True|2024-03-20T09:52:41.5444999+08:00;True|2024-03-20T09:52:28.9463180+08:00;True|2024-03-19T16:26:27.2407972+08:00;True|2024-03-19T15:50:07.1464827+08:00;True|2024-03-14T15:48:46.0852411+08:00;True|2024-03-12T11:15:35.2934238+08:00;True|2024-03-07T16:29:08.9381292+08:00;True|2024-03-05T14:31:05.6269677+08:00;True|2024-03-04T14:37:08.7040845+08:00;True|2024-02-28T11:11:35.8506164+08:00;</History>
|
||||
<LastFailureDetails />
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<File Include="Areas/HelpPage/HelpPage.css">
|
||||
<publishTime>01/30/2024 18:21:41</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Areas/HelpPage/Views/Help/Api.cshtml">
|
||||
<publishTime>01/30/2024 18:21:40</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml">
|
||||
<publishTime>01/30/2024 18:21:40</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml">
|
||||
<publishTime>01/30/2024 18:21:40</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml">
|
||||
<publishTime>01/30/2024 18:21:40</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml">
|
||||
<publishTime>01/30/2024 18:21:40</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml">
|
||||
<publishTime>01/30/2024 18:21:40</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml">
|
||||
<publishTime>01/30/2024 18:21:40</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml">
|
||||
<publishTime>01/30/2024 18:21:40</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml">
|
||||
<publishTime>01/30/2024 18:21:40</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml">
|
||||
<publishTime>01/30/2024 18:21:40</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml">
|
||||
<publishTime>01/30/2024 18:21:40</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml">
|
||||
<publishTime>01/30/2024 18:21:40</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml">
|
||||
<publishTime>01/30/2024 18:21:40</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml">
|
||||
<publishTime>01/30/2024 18:21:39</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml">
|
||||
<publishTime>01/30/2024 18:21:39</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Areas/HelpPage/Views/Help/Index.cshtml">
|
||||
<publishTime>01/30/2024 18:21:39</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Areas/HelpPage/Views/Help/ResourceModel.cshtml">
|
||||
<publishTime>01/30/2024 18:21:39</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Areas/HelpPage/Views/Shared/_Layout.cshtml">
|
||||
<publishTime>01/30/2024 18:21:39</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Areas/HelpPage/Views/Web.config">
|
||||
<publishTime>01/30/2024 18:21:39</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Areas/HelpPage/Views/_ViewStart.cshtml">
|
||||
<publishTime>01/30/2024 18:21:25</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Antlr3.Runtime.dll">
|
||||
<publishTime>09/10/2013 16:29:20</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Antlr3.Runtime.pdb">
|
||||
<publishTime>09/10/2013 16:29:20</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="bin/DataService.dll">
|
||||
<publishTime>03/26/2024 14:27:59</publishTime>
|
||||
<publishTime>08/10/2024 15:24:24</publishTime>
|
||||
</File>
|
||||
<File Include="bin/DataService.pdb">
|
||||
<publishTime>03/26/2024 14:27:59</publishTime>
|
||||
<publishTime>08/10/2024 15:24:24</publishTime>
|
||||
</File>
|
||||
<File Include="bin/log4net.dll">
|
||||
<publishTime>12/13/2023 14:16:07</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="bin/LonglslandExhibitionCenter.dll">
|
||||
<publishTime>04/15/2024 08:46:25</publishTime>
|
||||
<publishTime>08/11/2024 20:53:53</publishTime>
|
||||
</File>
|
||||
<File Include="bin/LonglslandExhibitionCenter.pdb">
|
||||
<publishTime>04/15/2024 08:46:25</publishTime>
|
||||
<publishTime>08/11/2024 20:53:53</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Maticsoft.Common.dll">
|
||||
<publishTime>12/13/2023 14:16:06</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Maticsoft.DBUtility.dll">
|
||||
<publishTime>12/13/2023 14:16:06</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll">
|
||||
<publishTime>09/05/2018 16:10:50</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Microsoft.Web.Infrastructure.dll">
|
||||
<publishTime>05/27/2022 23:39:10</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/MQTTnet.dll">
|
||||
<publishTime>12/08/2022 04:07:06</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/MySql.Data.dll">
|
||||
<publishTime>12/13/2023 14:16:06</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Newtonsoft.Json.dll">
|
||||
<publishTime>04/22/2019 01:06:16</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/csc.exe">
|
||||
<publishTime>08/08/2018 05:38:48</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/csc.exe.config">
|
||||
<publishTime>08/08/2018 12:18:12</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/csc.rsp">
|
||||
<publishTime>08/08/2018 12:09:42</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/csi.exe">
|
||||
<publishTime>08/08/2018 05:38:48</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/csi.exe.config">
|
||||
<publishTime>08/08/2018 12:18:34</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/csi.rsp">
|
||||
<publishTime>08/08/2018 12:09:56</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/Microsoft.Build.Tasks.CodeAnalysis.dll">
|
||||
<publishTime>08/08/2018 05:38:48</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/Microsoft.CodeAnalysis.CSharp.dll">
|
||||
<publishTime>08/08/2018 05:38:48</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/Microsoft.CodeAnalysis.CSharp.Scripting.dll">
|
||||
<publishTime>08/08/2018 05:38:48</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/Microsoft.CodeAnalysis.dll">
|
||||
<publishTime>08/08/2018 05:38:48</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/Microsoft.CodeAnalysis.Scripting.dll">
|
||||
<publishTime>08/08/2018 05:38:48</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/Microsoft.CodeAnalysis.VisualBasic.dll">
|
||||
<publishTime>08/08/2018 05:38:48</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/Microsoft.CSharp.Core.targets">
|
||||
<publishTime>08/08/2018 12:09:42</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/Microsoft.DiaSymReader.Native.amd64.dll">
|
||||
<publishTime>12/05/2017 09:36:44</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/Microsoft.DiaSymReader.Native.x86.dll">
|
||||
<publishTime>12/05/2017 09:36:44</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/Microsoft.Managed.Core.targets">
|
||||
<publishTime>08/08/2018 12:09:42</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/Microsoft.VisualBasic.Core.targets">
|
||||
<publishTime>08/08/2018 12:09:42</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/Microsoft.Win32.Primitives.dll">
|
||||
<publishTime>11/05/2016 18:55:32</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.AppContext.dll">
|
||||
<publishTime>11/05/2016 18:55:34</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Collections.Immutable.dll">
|
||||
<publishTime>05/16/2018 03:29:34</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Console.dll">
|
||||
<publishTime>11/05/2016 18:55:48</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Diagnostics.DiagnosticSource.dll">
|
||||
<publishTime>11/05/2016 18:55:52</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Diagnostics.FileVersionInfo.dll">
|
||||
<publishTime>11/05/2016 18:55:56</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Diagnostics.StackTrace.dll">
|
||||
<publishTime>11/05/2016 18:55:52</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Globalization.Calendars.dll">
|
||||
<publishTime>11/05/2016 18:56:02</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.IO.Compression.dll">
|
||||
<publishTime>11/05/2016 18:56:08</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.IO.Compression.ZipFile.dll">
|
||||
<publishTime>11/05/2016 18:56:04</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.IO.FileSystem.dll">
|
||||
<publishTime>11/05/2016 18:56:08</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.IO.FileSystem.Primitives.dll">
|
||||
<publishTime>11/05/2016 18:56:08</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Net.Http.dll">
|
||||
<publishTime>11/05/2016 18:56:30</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Net.Sockets.dll">
|
||||
<publishTime>11/05/2016 18:56:34</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Reflection.Metadata.dll">
|
||||
<publishTime>05/16/2018 03:29:44</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Runtime.InteropServices.RuntimeInformation.dll">
|
||||
<publishTime>11/05/2016 18:57:00</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Security.Cryptography.Algorithms.dll">
|
||||
<publishTime>11/05/2016 18:57:14</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Security.Cryptography.Encoding.dll">
|
||||
<publishTime>11/05/2016 18:57:08</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Security.Cryptography.Primitives.dll">
|
||||
<publishTime>11/05/2016 18:57:18</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Security.Cryptography.X509Certificates.dll">
|
||||
<publishTime>11/05/2016 18:57:18</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Text.Encoding.CodePages.dll">
|
||||
<publishTime>11/05/2016 18:57:20</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Threading.Tasks.Extensions.dll">
|
||||
<publishTime>11/05/2016 18:57:24</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.ValueTuple.dll">
|
||||
<publishTime>11/05/2016 18:57:30</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Xml.ReaderWriter.dll">
|
||||
<publishTime>11/05/2016 18:57:36</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Xml.XmlDocument.dll">
|
||||
<publishTime>11/05/2016 18:57:34</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Xml.XPath.dll">
|
||||
<publishTime>11/05/2016 18:57:40</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Xml.XPath.XDocument.dll">
|
||||
<publishTime>11/05/2016 18:57:34</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/vbc.exe">
|
||||
<publishTime>08/08/2018 05:38:48</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/vbc.exe.config">
|
||||
<publishTime>08/08/2018 12:18:18</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/vbc.rsp">
|
||||
<publishTime>08/08/2018 12:09:46</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/VBCSCompiler.exe">
|
||||
<publishTime>08/08/2018 05:38:48</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/VBCSCompiler.exe.config">
|
||||
<publishTime>08/08/2018 12:18:16</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Net.Http.Formatting.dll">
|
||||
<publishTime>05/27/2022 23:41:34</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Web.Helpers.dll">
|
||||
<publishTime>05/27/2022 23:41:54</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Web.Http.dll">
|
||||
<publishTime>05/27/2022 23:41:46</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Web.Http.WebHost.dll">
|
||||
<publishTime>05/27/2022 23:41:54</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Web.Mvc.dll">
|
||||
<publishTime>05/27/2022 23:42:20</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Web.Optimization.dll">
|
||||
<publishTime>02/11/2014 15:26:04</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Web.Razor.dll">
|
||||
<publishTime>05/27/2022 23:42:06</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Web.WebPages.Deployment.dll">
|
||||
<publishTime>05/27/2022 23:42:46</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Web.WebPages.dll">
|
||||
<publishTime>05/27/2022 23:42:16</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Web.WebPages.Razor.dll">
|
||||
<publishTime>05/27/2022 23:42:50</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/WebGrease.dll">
|
||||
<publishTime>01/23/2014 13:57:34</publishTime>
|
||||
<publishTime>08/06/2024 16:01:53</publishTime>
|
||||
</File>
|
||||
<File Include="bin/zh-Hans/System.Net.Http.Formatting.resources.dll">
|
||||
<publishTime>05/28/2022 07:34:44</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/zh-Hans/System.Web.Helpers.resources.dll">
|
||||
<publishTime>05/28/2022 07:34:44</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/zh-Hans/System.Web.Http.resources.dll">
|
||||
<publishTime>05/28/2022 07:34:04</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/zh-Hans/System.Web.Http.WebHost.resources.dll">
|
||||
<publishTime>05/28/2022 07:34:44</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/zh-Hans/System.Web.Mvc.resources.dll">
|
||||
<publishTime>05/28/2022 07:34:44</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/zh-Hans/System.Web.Optimization.resources.dll">
|
||||
<publishTime>02/11/2014 23:28:40</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/zh-Hans/System.Web.Razor.resources.dll">
|
||||
<publishTime>05/28/2022 07:35:16</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/zh-Hans/System.Web.WebPages.Deployment.resources.dll">
|
||||
<publishTime>05/28/2022 07:34:24</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/zh-Hans/System.Web.WebPages.Razor.resources.dll">
|
||||
<publishTime>05/28/2022 07:34:04</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/zh-Hans/System.Web.WebPages.resources.dll">
|
||||
<publishTime>05/28/2022 07:34:44</publishTime>
|
||||
<publishTime>08/06/2024 16:01:52</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap-theme.css">
|
||||
<publishTime>01/30/2024 18:21:33</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap-theme.css.map">
|
||||
<publishTime>01/30/2024 18:21:33</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap-theme.min.css">
|
||||
<publishTime>01/30/2024 18:21:32</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap-theme.min.css.map">
|
||||
<publishTime>01/30/2024 18:21:32</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap.css">
|
||||
<publishTime>01/30/2024 18:21:32</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap.css.map">
|
||||
<publishTime>01/30/2024 18:21:32</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap.min.css">
|
||||
<publishTime>01/30/2024 18:21:32</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap.min.css.map">
|
||||
<publishTime>01/30/2024 18:21:32</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Content/Site.css">
|
||||
<publishTime>01/30/2024 18:21:25</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Controllers/api/GetAirconditioningLoadController.cs">
|
||||
<publishTime>03/25/2024 14:45:01</publishTime>
|
||||
|
@ -493,73 +493,73 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
|||
<publishTime>01/30/2024 18:21:28</publishTime>
|
||||
</File>
|
||||
<File Include="favicon.ico">
|
||||
<publishTime>01/30/2024 18:21:25</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="fonts/glyphicons-halflings-regular.eot">
|
||||
<publishTime>01/30/2024 18:21:32</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="fonts/glyphicons-halflings-regular.svg">
|
||||
<publishTime>01/30/2024 18:21:32</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="fonts/glyphicons-halflings-regular.ttf">
|
||||
<publishTime>01/30/2024 18:21:32</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="fonts/glyphicons-halflings-regular.woff">
|
||||
<publishTime>01/30/2024 18:21:32</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="fonts/glyphicons-halflings-regular.woff2">
|
||||
<publishTime>01/30/2024 18:21:32</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Global.asax">
|
||||
<publishTime>01/30/2024 18:21:25</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Scripts/bootstrap.js">
|
||||
<publishTime>01/30/2024 18:21:32</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Scripts/bootstrap.min.js">
|
||||
<publishTime>01/30/2024 18:21:32</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Scripts/jquery-3.4.1.js">
|
||||
<publishTime>01/30/2024 18:21:34</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Scripts/jquery-3.4.1.min.js">
|
||||
<publishTime>01/30/2024 18:21:33</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Scripts/jquery-3.4.1.min.map">
|
||||
<publishTime>01/30/2024 18:21:33</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Scripts/jquery-3.4.1.slim.js">
|
||||
<publishTime>01/30/2024 18:21:33</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Scripts/jquery-3.4.1.slim.min.js">
|
||||
<publishTime>01/30/2024 18:21:33</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Scripts/jquery-3.4.1.slim.min.map">
|
||||
<publishTime>01/30/2024 18:21:33</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Scripts/modernizr-2.8.3.js">
|
||||
<publishTime>01/30/2024 18:21:41</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Util/MqttClientService.cs">
|
||||
<publishTime>02/23/2024 18:15:19</publishTime>
|
||||
</File>
|
||||
<File Include="Views/Home/Index.cshtml">
|
||||
<publishTime>01/30/2024 18:21:25</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Views/Shared/Error.cshtml">
|
||||
<publishTime>01/30/2024 18:21:25</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Views/Shared/_Layout.cshtml">
|
||||
<publishTime>01/30/2024 18:21:25</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Views/Web.config">
|
||||
<publishTime>01/30/2024 18:21:25</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Views/_ViewStart.cshtml">
|
||||
<publishTime>01/30/2024 18:21:25</publishTime>
|
||||
<publishTime>08/06/2024 16:01:51</publishTime>
|
||||
</File>
|
||||
<File Include="Web.config">
|
||||
<publishTime>02/28/2024 11:11:35</publishTime>
|
||||
<publishTime>08/06/2024 16:16:41</publishTime>
|
||||
</File>
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -5,7 +5,7 @@
|
|||
-->
|
||||
<configuration>
|
||||
<appSettings>
|
||||
<add key="ConnectionString" value="Data Source=127.0.0.1;Database=changdao_zhanlanguang;User ID=root;Password=0822;Charset=gbk;convert zero datetime=True" />
|
||||
<add key="ConnectionString" value="Data Source=127.0.0.1;Database=changdao_zhanlanguang;User ID=root;Password=Unity3du#d112233;Charset=gbk;convert zero datetime=True" />
|
||||
<add key="MySQLDataBase" value="changdao_zhanlanguang" />
|
||||
<add key="webpages:Version" value="3.0.0.0" />
|
||||
<add key="webpages:Enabled" value="false" />
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -5,7 +5,7 @@
|
|||
-->
|
||||
<configuration>
|
||||
<appSettings>
|
||||
<add key="ConnectionString" value="Data Source=127.0.0.1;Database=changdao_zhanlanguang;User ID=root;Password=0822;Charset=gbk;convert zero datetime=True" />
|
||||
<add key="ConnectionString" value="Data Source=127.0.0.1;Database=changdao_zhanlanguang;User ID=root;Password=Unity3du#d112233;Charset=gbk;convert zero datetime=True" />
|
||||
<add key="MySQLDataBase" value="changdao_zhanlanguang" />
|
||||
<add key="webpages:Version" value="3.0.0.0" />
|
||||
<add key="webpages:Enabled" value="false" />
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1 +1 @@
|
|||
65458ecc580a2202fc70a873c976f472e79ecacb
|
||||
25482d9d8c50f9879f8b4dc4ea1f0fcef36c6ff1
|
||||
|
|
|
@ -101,3 +101,106 @@ E:\林谷项目\长岛展览馆项目\后端\LonglslandExhibitionCenter\Longlsla
|
|||
E:\林谷项目\长岛展览馆项目\后端\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\log4net.xml
|
||||
E:\林谷项目\长岛展览馆项目\后端\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\MQTTnet.xml
|
||||
E:\林谷项目\长岛展览馆项目\后端\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\MQTTnet.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\LonglslandExhibitionCenter.dll.config
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\LonglslandExhibitionCenter.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\LonglslandExhibitionCenter.pdb
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\csc.exe
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\csc.exe.config
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\csc.rsp
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\csi.exe
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\csi.exe.config
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\csi.rsp
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.Build.Tasks.CodeAnalysis.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.CodeAnalysis.CSharp.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.CodeAnalysis.CSharp.Scripting.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.CodeAnalysis.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.CodeAnalysis.Scripting.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.CodeAnalysis.VisualBasic.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.CSharp.Core.targets
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.DiaSymReader.Native.amd64.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.DiaSymReader.Native.x86.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.Managed.Core.targets
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.VisualBasic.Core.targets
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.Win32.Primitives.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.AppContext.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Collections.Immutable.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Console.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Diagnostics.DiagnosticSource.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Diagnostics.FileVersionInfo.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Diagnostics.StackTrace.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Globalization.Calendars.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.IO.Compression.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.IO.Compression.ZipFile.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.IO.FileSystem.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.IO.FileSystem.Primitives.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Net.Http.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Net.Sockets.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Reflection.Metadata.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Runtime.InteropServices.RuntimeInformation.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Security.Cryptography.Algorithms.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Security.Cryptography.Encoding.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Security.Cryptography.Primitives.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Security.Cryptography.X509Certificates.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Text.Encoding.CodePages.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Threading.Tasks.Extensions.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.ValueTuple.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Xml.ReaderWriter.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Xml.XmlDocument.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Xml.XPath.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Xml.XPath.XDocument.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\vbc.exe
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\vbc.exe.config
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\vbc.rsp
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\VBCSCompiler.exe
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\VBCSCompiler.exe.config
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Antlr3.Runtime.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\DataService.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Microsoft.Web.Infrastructure.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\MQTTnet.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Newtonsoft.Json.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Net.Http.Formatting.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Helpers.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Http.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Http.WebHost.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Mvc.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Optimization.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Razor.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.WebPages.Deployment.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.WebPages.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.WebPages.Razor.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\WebGrease.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\MySql.Data.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Maticsoft.DBUtility.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Maticsoft.Common.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\DataService.pdb
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\log4net.xml
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\MQTTnet.xml
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Newtonsoft.Json.xml
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Net.Http.Formatting.xml
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Helpers.xml
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Http.xml
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Http.WebHost.xml
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Mvc.xml
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Optimization.xml
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Razor.xml
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.WebPages.xml
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.WebPages.Deployment.xml
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.WebPages.Razor.xml
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Antlr3.Runtime.pdb
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Net.Http.Formatting.resources.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.Helpers.resources.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.Http.resources.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.Http.WebHost.resources.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.Mvc.resources.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.Optimization.resources.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.Razor.resources.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.WebPages.resources.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.WebPages.Deployment.resources.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.WebPages.Razor.resources.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\obj\Debug\LonglslandExhibitionCenter.csproj.AssemblyReference.cache
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\obj\Debug\LonglslandExhibitionCenter.csproj.CoreCompileInputs.cache
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\obj\Debug\LonglslandExhibitionCenter.csproj.CopyComplete
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\obj\Debug\LonglslandExhibitionCenter.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\obj\Debug\LonglslandExhibitionCenter.pdb
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1 +1 @@
|
|||
c1b222264fd394fa20624931d7820c15476d6379
|
||||
1240b023f6682313fa4ea6f092db06b44dec9257
|
||||
|
|
|
@ -101,3 +101,106 @@ E:\林谷项目\长岛展览馆项目\后端\LonglslandExhibitionCenter\Longlsla
|
|||
E:\林谷项目\长岛展览馆项目\后端\LonglslandExhibitionCenter\LonglslandExhibitionCenter\obj\Release\LonglslandExhibitionCenter.csproj.CopyComplete
|
||||
E:\林谷项目\长岛展览馆项目\后端\LonglslandExhibitionCenter\LonglslandExhibitionCenter\obj\Release\LonglslandExhibitionCenter.dll
|
||||
E:\林谷项目\长岛展览馆项目\后端\LonglslandExhibitionCenter\LonglslandExhibitionCenter\obj\Release\LonglslandExhibitionCenter.pdb
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\LonglslandExhibitionCenter.dll.config
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\LonglslandExhibitionCenter.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\LonglslandExhibitionCenter.pdb
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\csc.exe
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\csc.exe.config
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\csc.rsp
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\csi.exe
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\csi.exe.config
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\csi.rsp
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.Build.Tasks.CodeAnalysis.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.CodeAnalysis.CSharp.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.CodeAnalysis.CSharp.Scripting.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.CodeAnalysis.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.CodeAnalysis.Scripting.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.CodeAnalysis.VisualBasic.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.CSharp.Core.targets
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.DiaSymReader.Native.amd64.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.DiaSymReader.Native.x86.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.Managed.Core.targets
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.VisualBasic.Core.targets
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.Win32.Primitives.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.AppContext.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Collections.Immutable.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Console.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Diagnostics.DiagnosticSource.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Diagnostics.FileVersionInfo.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Diagnostics.StackTrace.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Globalization.Calendars.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.IO.Compression.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.IO.Compression.ZipFile.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.IO.FileSystem.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.IO.FileSystem.Primitives.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Net.Http.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Net.Sockets.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Reflection.Metadata.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Runtime.InteropServices.RuntimeInformation.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Security.Cryptography.Algorithms.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Security.Cryptography.Encoding.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Security.Cryptography.Primitives.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Security.Cryptography.X509Certificates.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Text.Encoding.CodePages.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Threading.Tasks.Extensions.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.ValueTuple.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Xml.ReaderWriter.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Xml.XmlDocument.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Xml.XPath.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Xml.XPath.XDocument.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\vbc.exe
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\vbc.exe.config
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\vbc.rsp
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\VBCSCompiler.exe
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\VBCSCompiler.exe.config
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Antlr3.Runtime.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\DataService.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Microsoft.Web.Infrastructure.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\MQTTnet.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Newtonsoft.Json.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Net.Http.Formatting.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Helpers.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Http.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Http.WebHost.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Mvc.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Optimization.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Razor.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.WebPages.Deployment.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.WebPages.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.WebPages.Razor.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\WebGrease.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\MySql.Data.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Maticsoft.DBUtility.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Maticsoft.Common.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\DataService.pdb
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\log4net.xml
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\MQTTnet.xml
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Newtonsoft.Json.xml
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Net.Http.Formatting.xml
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Helpers.xml
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Http.xml
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Http.WebHost.xml
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Mvc.xml
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Optimization.xml
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Razor.xml
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.WebPages.xml
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.WebPages.Deployment.xml
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.WebPages.Razor.xml
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Antlr3.Runtime.pdb
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Net.Http.Formatting.resources.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.Helpers.resources.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.Http.resources.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.Http.WebHost.resources.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.Mvc.resources.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.Optimization.resources.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.Razor.resources.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.WebPages.resources.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.WebPages.Deployment.resources.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.WebPages.Razor.resources.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\obj\Release\LonglslandExhibitionCenter.csproj.AssemblyReference.cache
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\obj\Release\LonglslandExhibitionCenter.csproj.CoreCompileInputs.cache
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\obj\Release\LonglslandExhibitionCenter.csproj.CopyComplete
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\obj\Release\LonglslandExhibitionCenter.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\obj\Release\LonglslandExhibitionCenter.pdb
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -5,7 +5,7 @@
|
|||
-->
|
||||
<configuration>
|
||||
<appSettings>
|
||||
<add key="ConnectionString" value="Data Source=127.0.0.1;Database=changdao_zhanlanguang;User ID=root;Password=0822;Charset=gbk;convert zero datetime=True" />
|
||||
<add key="ConnectionString" value="Data Source=127.0.0.1;Database=changdao_zhanlanguang;User ID=root;Password=Unity3du#d112233;Charset=gbk;convert zero datetime=True" />
|
||||
<add key="MySQLDataBase" value="changdao_zhanlanguang" />
|
||||
<add key="webpages:Version" value="3.0.0.0" />
|
||||
<add key="webpages:Enabled" value="false" />
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -5,7 +5,7 @@
|
|||
-->
|
||||
<configuration>
|
||||
<appSettings>
|
||||
<add key="ConnectionString" value="Data Source=127.0.0.1;Database=changdao_zhanlanguang;User ID=root;Password=0822;Charset=gbk;convert zero datetime=True" />
|
||||
<add key="ConnectionString" value="Data Source=127.0.0.1;Database=changdao_zhanlanguang;User ID=root;Password=Unity3du#d112233;Charset=gbk;convert zero datetime=True" />
|
||||
<add key="MySQLDataBase" value="changdao_zhanlanguang" />
|
||||
<add key="webpages:Version" value="3.0.0.0" />
|
||||
<add key="webpages:Enabled" value="false" />
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
-->
|
||||
<configuration>
|
||||
<appSettings>
|
||||
<add key="ConnectionString" value="Data Source=127.0.0.1;Database=changdao_zhanlanguang;User ID=root;Password=0822;Charset=gbk;convert zero datetime=True" />
|
||||
<add key="ConnectionString" value="Data Source=127.0.0.1;Database=changdao_zhanlanguang;User ID=root;Password=Unity3du#d112233;Charset=gbk;convert zero datetime=True" />
|
||||
<add key="MySQLDataBase" value="changdao_zhanlanguang" />
|
||||
<add key="webpages:Version" value="3.0.0.0" />
|
||||
<add key="webpages:Enabled" value="false" />
|
||||
|
|
Binary file not shown.
|
@ -11,6 +11,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Security", "Security\Securi
|
|||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataService", "DataService\DataService.csproj", "{9B5E12E8-B3B7-482D-A00B-AF6BD0771284}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Supplement", "Supplement\Supplement.csproj", "{5D4431AA-963F-4FA9-A457-03693139C9A0}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
|
@ -29,12 +31,17 @@ Global
|
|||
{9B5E12E8-B3B7-482D-A00B-AF6BD0771284}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{9B5E12E8-B3B7-482D-A00B-AF6BD0771284}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{9B5E12E8-B3B7-482D-A00B-AF6BD0771284}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{5D4431AA-963F-4FA9-A457-03693139C9A0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{5D4431AA-963F-4FA9-A457-03693139C9A0}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{5D4431AA-963F-4FA9-A457-03693139C9A0}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{5D4431AA-963F-4FA9-A457-03693139C9A0}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(NestedProjects) = preSolution
|
||||
{DC5EF88E-671B-4FFE-A4A3-EE3FE96FCD21} = {4F71637A-77E0-467E-820B-A6FD206F3783}
|
||||
{5D4431AA-963F-4FA9-A457-03693139C9A0} = {4F71637A-77E0-467E-820B-A6FD206F3783}
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {45FA1A52-194C-487C-9A53-63F49BFDC6AE}
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
</appender>
|
||||
</log4net>
|
||||
<appSettings>
|
||||
<add key="ConnectionString" value="Data Source=127.0.0.1;Database=changdao_zhanlanguang;User ID=root;Password=0822;Charset=gbk;convert zero datetime=True"/>
|
||||
<add key="ConnectionString" value="Data Source=127.0.0.1;Database=changdao_zhanlanguang;User ID=root;Password=Unity3du#d112233;Charset=gbk;convert zero datetime=True"/>
|
||||
<!--是否测试-->
|
||||
<add key="is_debug" value="1"/>
|
||||
</appSettings>
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
//
|
||||
// serviceInstaller1
|
||||
//
|
||||
this.serviceInstaller1.Description = "安防监测服务";
|
||||
this.serviceInstaller1.Description = "数据存储服务";
|
||||
this.serviceInstaller1.ServiceName = "ServiceSecurity";
|
||||
this.serviceInstaller1.StartType = System.ServiceProcess.ServiceStartMode.Automatic;
|
||||
//
|
||||
|
|
|
@ -118,7 +118,7 @@
|
|||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<metadata name="serviceProcessInstaller1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
<value>17, 64</value>
|
||||
</metadata>
|
||||
<metadata name="serviceInstaller1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>279, 17</value>
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,212 +0,0 @@
|
|||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-09 09:46:59,368 [3] INFO loginfo - 服务开始
|
||||
2024-01-09 09:46:59,506 [3] INFO loginfo - 开始
|
||||
2024-01-09 09:46:59,641 [3] INFO loginfo - 连接成功
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-09 09:46:59,644 [3] INFO loginfo - 服务开始
|
||||
2024-01-09 09:46:59,645 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-09 09:48:59,750 [25] INFO loginfo - 进入方法
|
||||
2024-01-09 09:49:12,754 [25] INFO loginfo - 数据1data{"devs":[{"d":[{"dq":192,"m":"010400051","ts":1704342327,"v":88.667},{"dq":192,"m":"01040005","ts":1704342327,"v":5.000},{"dq":192,"m":"1040006","ts":1704342327,"v":4.000},{"dq":192,"m":"1040007","ts":1704342327,"v":3.000},{"dq":192,"m":"1040008","ts":1704342327,"v":2.000},{"dq":192,"m":"1040009","ts":1704342327,"v":1.000}],"dev":"310510043001"}],"pKey":"data","sn":"6e352ec4-82fc-4db4-80fd-6699871dd1d2","ts":1704342327,"ver":"2.0.0"}
|
||||
|
||||
2024-01-09 09:49:12,772 [25] INFO loginfo - 处理失败,数据:{"devs":[{"d":[{"dq":192,"m":"010400051","ts":1704342327,"v":88.667},{"dq":192,"m":"01040005","ts":1704342327,"v":5.000},{"dq":192,"m":"1040006","ts":1704342327,"v":4.000},{"dq":192,"m":"1040007","ts":1704342327,"v":3.000},{"dq":192,"m":"1040008","ts":1704342327,"v":2.000},{"dq":192,"m":"1040009","ts":1704342327,"v":1.000}],"dev":"310510043001"}],"pKey":"data","sn":"6e352ec4-82fc-4db4-80fd-6699871dd1d2","ts":1704342327,"ver":"2.0.0"}
|
||||
,原因:值对于 Int32 太大或太小。
|
||||
2024-01-09 09:50:08,077 [18] INFO loginfo - 进入方法
|
||||
2024-01-09 09:50:29,323 [18] INFO loginfo - 处理失败,数据:{"devs":[{"d":[{"dq":192,"m":"010400051","ts":1704342327,"v":88.667},{"dq":192,"m":"01040005","ts":1704342327,"v":5.000},{"dq":192,"m":"1040006","ts":1704342327,"v":4.000},{"dq":192,"m":"1040007","ts":1704342327,"v":3.000},{"dq":192,"m":"1040008","ts":1704342327,"v":2.000},{"dq":192,"m":"1040009","ts":1704342327,"v":1.000}],"dev":"310510043001"}],"pKey":"data","sn":"6e352ec4-82fc-4db4-80fd-6699871dd1d2","ts":1704342327,"ver":"2.0.0"}
|
||||
,原因:Table 'electricity_data_2024-01' already exists
|
||||
2024-01-09 09:50:36,665 [18] INFO loginfo - 进入方法
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-09 09:52:22,872 [3] INFO loginfo - 服务开始
|
||||
2024-01-09 09:52:22,997 [3] INFO loginfo - 开始
|
||||
2024-01-09 09:52:23,092 [3] INFO loginfo - 连接成功
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-09 09:52:23,094 [3] INFO loginfo - 服务开始
|
||||
2024-01-09 09:52:23,095 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-09 09:52:31,801 [5] INFO loginfo - 进入方法
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-09 09:53:51,784 [3] INFO loginfo - 服务开始
|
||||
2024-01-09 09:53:51,904 [3] INFO loginfo - 开始
|
||||
2024-01-09 09:53:51,998 [3] INFO loginfo - 连接成功
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-09 09:53:52,001 [3] INFO loginfo - 服务开始
|
||||
2024-01-09 09:53:52,002 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-09 09:54:00,524 [9] INFO loginfo - 进入方法
|
||||
2024-01-09 09:54:02,032 [9] INFO loginfo - 处理失败,数据:{"devs":[{"d":[{"dq":192,"m":"010400051","ts":1704342327,"v":88.667},{"dq":192,"m":"01040005","ts":1704342327,"v":5.000},{"dq":192,"m":"1040006","ts":1704342327,"v":4.000},{"dq":192,"m":"1040007","ts":1704342327,"v":3.000},{"dq":192,"m":"1040008","ts":1704342327,"v":2.000},{"dq":192,"m":"1040009","ts":1704342327,"v":1.000}],"dev":"310510043001"}],"pKey":"data","sn":"6e352ec4-82fc-4db4-80fd-6699871dd1d2","ts":1704342327,"ver":"2.0.0"}
|
||||
,原因:Table 'electricity_data_2024-01' already exists
|
||||
2024-01-09 09:54:28,925 [15] INFO loginfo - 进入方法
|
||||
2024-01-09 09:56:42,782 [15] INFO loginfo - 处理失败,数据:{"devs":[{"d":[{"dq":192,"m":"010400051","ts":1704342327,"v":88.667},{"dq":192,"m":"01040005","ts":1704342327,"v":5.000},{"dq":192,"m":"1040006","ts":1704342327,"v":4.000},{"dq":192,"m":"1040007","ts":1704342327,"v":3.000},{"dq":192,"m":"1040008","ts":1704342327,"v":2.000},{"dq":192,"m":"1040009","ts":1704342327,"v":1.000}],"dev":"310510043001"}],"pKey":"data","sn":"6e352ec4-82fc-4db4-80fd-6699871dd1d2","ts":1704342327,"ver":"2.0.0"}
|
||||
,原因:Table 'electricity_data_2024-01' already exists
|
||||
2024-01-09 09:56:42,785 [21] INFO loginfo - 网络异常,准备10秒后重新连接。
|
||||
2024-01-09 09:56:42,914 [18] INFO loginfo - 网络异常,准备10秒后重新连接。
|
||||
2024-01-09 09:56:56,931 [21] INFO loginfo - 准备重新连接服务器...
|
||||
2024-01-09 09:56:56,931 [25] INFO loginfo - 进入方法
|
||||
2024-01-09 09:56:56,931 [18] INFO loginfo - 准备重新连接服务器...
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-09 09:57:44,738 [3] INFO loginfo - 服务开始
|
||||
2024-01-09 09:57:44,876 [3] INFO loginfo - 开始
|
||||
2024-01-09 09:57:44,972 [3] INFO loginfo - 连接成功
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-09 09:57:44,973 [3] INFO loginfo - 服务开始
|
||||
2024-01-09 09:57:44,974 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-09 09:57:58,085 [9] INFO loginfo - 进入方法
|
||||
2024-01-09 09:59:27,463 [9] INFO loginfo - 处理失败,数据:{"devs":[{"d":[{"dq":192,"m":"010400051","ts":1704342327,"v":88.667},{"dq":192,"m":"01040005","ts":1704342327,"v":5.000},{"dq":192,"m":"1040006","ts":1704342327,"v":4.000},{"dq":192,"m":"1040007","ts":1704342327,"v":3.000},{"dq":192,"m":"1040008","ts":1704342327,"v":2.000},{"dq":192,"m":"1040009","ts":1704342327,"v":1.000}],"dev":"310510043001"}],"pKey":"data","sn":"6e352ec4-82fc-4db4-80fd-6699871dd1d2","ts":1704342327,"ver":"2.0.0"}
|
||||
,原因:Unknown database 'electricity_data'
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-09 10:03:19,468 [3] INFO loginfo - 服务开始
|
||||
2024-01-09 10:03:19,588 [3] INFO loginfo - 开始
|
||||
2024-01-09 10:03:19,702 [3] INFO loginfo - 连接成功
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-09 10:03:19,704 [3] INFO loginfo - 服务开始
|
||||
2024-01-09 10:03:19,705 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-09 10:03:37,573 [9] INFO loginfo - 进入方法
|
||||
2024-01-09 10:03:45,023 [9] INFO loginfo - 处理失败,数据:{"devs":[{"d":[{"dq":192,"m":"010400051","ts":1704342327,"v":88.667},{"dq":192,"m":"01040005","ts":1704342327,"v":5.000},{"dq":192,"m":"1040006","ts":1704342327,"v":4.000},{"dq":192,"m":"1040007","ts":1704342327,"v":3.000},{"dq":192,"m":"1040008","ts":1704342327,"v":2.000},{"dq":192,"m":"1040009","ts":1704342327,"v":1.000}],"dev":"310510043001"}],"pKey":"data","sn":"6e352ec4-82fc-4db4-80fd-6699871dd1d2","ts":1704342327,"ver":"2.0.0"}
|
||||
,原因:Unknown database 'electricity_data'
|
||||
2024-01-09 10:03:58,637 [8] INFO loginfo - 进入方法
|
||||
2024-01-09 10:04:15,419 [8] INFO loginfo - 处理失败,数据:{"devs":[{"d":[{"dq":192,"m":"010400051","ts":1704342327,"v":88.667},{"dq":192,"m":"01040005","ts":1704342327,"v":5.000},{"dq":192,"m":"1040006","ts":1704342327,"v":4.000},{"dq":192,"m":"1040007","ts":1704342327,"v":3.000},{"dq":192,"m":"1040008","ts":1704342327,"v":2.000},{"dq":192,"m":"1040009","ts":1704342327,"v":1.000}],"dev":"310510043001"}],"pKey":"data","sn":"6e352ec4-82fc-4db4-80fd-6699871dd1d2","ts":1704342327,"ver":"2.0.0"}
|
||||
,原因:Unknown database 'electricity_data'
|
||||
2024-01-09 10:04:29,628 [17] INFO loginfo - 进入方法
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-09 10:11:52,876 [3] INFO loginfo - 服务开始
|
||||
2024-01-09 10:11:53,023 [3] INFO loginfo - 开始
|
||||
2024-01-09 10:11:53,147 [3] INFO loginfo - 连接成功
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-09 10:11:53,149 [3] INFO loginfo - 服务开始
|
||||
2024-01-09 10:11:53,151 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-09 10:12:09,689 [13] INFO loginfo - 进入方法
|
||||
2024-01-09 10:26:00,129 [15] INFO loginfo - 网络异常,准备10秒后重新连接。
|
||||
2024-01-09 10:26:00,130 [16] INFO loginfo - 网络异常,准备10秒后重新连接。
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-09 10:26:31,580 [3] INFO loginfo - 服务开始
|
||||
2024-01-09 10:26:31,686 [3] INFO loginfo - 开始
|
||||
2024-01-09 10:26:36,778 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-09 10:26:36,779 [3] INFO loginfo - 服务开始
|
||||
2024-01-09 10:26:36,828 [3] INFO loginfo - 发布连接成功
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-09 10:26:54,114 [3] INFO loginfo - 服务开始
|
||||
2024-01-09 10:26:54,246 [3] INFO loginfo - 开始
|
||||
2024-01-09 10:26:57,616 [3] INFO loginfo - 连接成功
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-09 10:26:57,618 [3] INFO loginfo - 服务开始
|
||||
2024-01-09 10:26:57,619 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-09 10:27:07,060 [12] INFO loginfo - 进入方法
|
||||
2024-01-09 10:27:25,013 [12] INFO loginfo - 数据1data{"devs":[{"d":[{"dq":192,"m":"010400051","ts":1704342327,"v":88.667},{"dq":192,"m":"01040005","ts":1704342327,"v":5.000},{"dq":192,"m":"1040006","ts":1704342327,"v":4.000},{"dq":192,"m":"1040007","ts":1704342327,"v":3.000},{"dq":192,"m":"1040008","ts":1704342327,"v":2.000},{"dq":192,"m":"1040009","ts":1704342327,"v":1.000}],"dev":"310510043001"}],"pKey":"data","sn":"6e352ec4-82fc-4db4-80fd-6699871dd1d2","ts":1704342327,"ver":"2.0.0"}
|
||||
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-09 10:38:21,181 [3] INFO loginfo - 服务开始
|
||||
2024-01-09 10:38:21,285 [3] INFO loginfo - 开始
|
||||
2024-01-09 10:38:21,384 [3] INFO loginfo - 连接成功
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-09 10:38:21,386 [3] INFO loginfo - 服务开始
|
||||
2024-01-09 10:38:21,387 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-09 10:38:38,004 [8] INFO loginfo - 进入方法
|
||||
2024-01-09 10:40:12,120 [8] INFO loginfo - 数据1data{"devs":[{"d":[{"dq":192,"m":"010400051","ts":1704342327,"v":88.667},{"dq":192,"m":"01040005","ts":1704342327,"v":5.000},{"dq":192,"m":"1040006","ts":1704342327,"v":4.000},{"dq":192,"m":"1040007","ts":1704342327,"v":3.000},{"dq":192,"m":"1040008","ts":1704342327,"v":2.000},{"dq":192,"m":"1040009","ts":1704342327,"v":1.000}],"dev":"310510043001"}],"pKey":"data","sn":"6e352ec4-82fc-4db4-80fd-6699871dd1d2","ts":1704342327,"ver":"2.0.0"}
|
||||
|
||||
2024-01-09 10:40:15,799 [18] INFO loginfo - 网络异常,准备10秒后重新连接。
|
||||
2024-01-09 10:40:40,021 [18] INFO loginfo - 准备重新连接服务器...
|
||||
2024-01-09 10:40:46,546 [18] INFO loginfo - 连接服务器成功!
|
||||
2024-01-09 10:40:46,576 [8] INFO loginfo - 处理失败,数据:{"devs":[{"d":[{"dq":192,"m":"010400051","ts":1704342327,"v":88.667},{"dq":192,"m":"01040005","ts":1704342327,"v":5.000},{"dq":192,"m":"1040006","ts":1704342327,"v":4.000},{"dq":192,"m":"1040007","ts":1704342327,"v":3.000},{"dq":192,"m":"1040008","ts":1704342327,"v":2.000},{"dq":192,"m":"1040009","ts":1704342327,"v":1.000}],"dev":"310510043001"}],"pKey":"data","sn":"6e352ec4-82fc-4db4-80fd-6699871dd1d2","ts":1704342327,"ver":"2.0.0"}
|
||||
,原因:值对于 Int32 太大或太小。
|
||||
2024-01-09 10:40:46,581 [8] INFO loginfo - 网络异常,准备10秒后重新连接。
|
||||
2024-01-09 10:40:56,582 [8] INFO loginfo - 准备重新连接服务器...
|
||||
2024-01-09 10:40:56,590 [8] INFO loginfo - 连接服务器成功!
|
||||
2024-01-09 10:40:56,601 [22] INFO loginfo - 网络异常,准备10秒后重新连接。
|
||||
2024-01-09 10:41:06,603 [22] INFO loginfo - 准备重新连接服务器...
|
||||
2024-01-09 10:41:06,604 [22] INFO loginfo - 连接服务器成功!
|
||||
2024-01-09 10:41:06,613 [20] INFO loginfo - 网络异常,准备10秒后重新连接。
|
||||
2024-01-09 10:41:13,378 [22] INFO loginfo - 进入方法
|
||||
2024-01-09 10:41:19,253 [20] INFO loginfo - 准备重新连接服务器...
|
||||
2024-01-09 10:41:19,255 [20] INFO loginfo - 连接服务器成功!
|
||||
2024-01-09 10:41:19,281 [22] INFO loginfo - 处理失败,数据:{"devs":[{"d":[{"dq":192,"m":"010400051","ts":1704342327,"v":88.667},{"dq":192,"m":"01040005","ts":1704342327,"v":5.000},{"dq":192,"m":"1040006","ts":1704342327,"v":4.000},{"dq":192,"m":"1040007","ts":1704342327,"v":3.000},{"dq":192,"m":"1040008","ts":1704342327,"v":2.000},{"dq":192,"m":"1040009","ts":1704342327,"v":1.000}],"dev":"310510043001"}],"pKey":"data","sn":"6e352ec4-82fc-4db4-80fd-6699871dd1d2","ts":1704342327,"ver":"2.0.0"}
|
||||
,原因:Table 'electricity_data__202401' already exists
|
||||
2024-01-09 10:41:19,285 [22] INFO loginfo - 网络异常,准备10秒后重新连接。
|
||||
2024-01-09 10:41:33,382 [22] INFO loginfo - 准备重新连接服务器...
|
||||
2024-01-09 10:41:33,558 [18] INFO loginfo - 进入方法
|
||||
2024-01-09 10:41:34,283 [22] INFO loginfo - 连接服务器成功!
|
||||
2024-01-09 10:42:16,308 [18] INFO loginfo - 处理失败,数据:{"devs":[{"d":[{"dq":192,"m":"010400051","ts":1704342327,"v":88.667},{"dq":192,"m":"01040005","ts":1704342327,"v":5.000},{"dq":192,"m":"1040006","ts":1704342327,"v":4.000},{"dq":192,"m":"1040007","ts":1704342327,"v":3.000},{"dq":192,"m":"1040008","ts":1704342327,"v":2.000},{"dq":192,"m":"1040009","ts":1704342327,"v":1.000}],"dev":"310510043001"}],"pKey":"data","sn":"6e352ec4-82fc-4db4-80fd-6699871dd1d2","ts":1704342327,"ver":"2.0.0"}
|
||||
,原因:Table 'electricity_data__202401' already exists
|
||||
2024-01-09 10:42:16,316 [18] INFO loginfo - 网络异常,准备10秒后重新连接。
|
||||
2024-01-09 10:42:26,319 [18] INFO loginfo - 准备重新连接服务器...
|
||||
2024-01-09 10:42:26,322 [18] INFO loginfo - 连接服务器成功!
|
||||
2024-01-09 10:42:45,854 [18] INFO loginfo - 进入方法
|
||||
2024-01-09 10:43:00,993 [18] INFO loginfo - 数据1data{"devs":[{"d":[{"dq":192,"m":"010400051","ts":1704342327,"v":88.667},{"dq":192,"m":"01040005","ts":1704342327,"v":5.000},{"dq":192,"m":"1040006","ts":1704342327,"v":4.000},{"dq":192,"m":"1040007","ts":1704342327,"v":3.000},{"dq":192,"m":"1040008","ts":1704342327,"v":2.000},{"dq":192,"m":"1040009","ts":1704342327,"v":1.000}],"dev":"310510043001"}],"pKey":"data","sn":"6e352ec4-82fc-4db4-80fd-6699871dd1d2","ts":1704342327,"ver":"2.0.0"}
|
||||
|
||||
2024-01-09 10:43:40,036 [18] INFO loginfo - 处理失败,数据:{"devs":[{"d":[{"dq":192,"m":"010400051","ts":1704342327,"v":88.667},{"dq":192,"m":"01040005","ts":1704342327,"v":5.000},{"dq":192,"m":"1040006","ts":1704342327,"v":4.000},{"dq":192,"m":"1040007","ts":1704342327,"v":3.000},{"dq":192,"m":"1040008","ts":1704342327,"v":2.000},{"dq":192,"m":"1040009","ts":1704342327,"v":1.000}],"dev":"310510043001"}],"pKey":"data","sn":"6e352ec4-82fc-4db4-80fd-6699871dd1d2","ts":1704342327,"ver":"2.0.0"}
|
||||
,原因:值对于 Int32 太大或太小。
|
||||
2024-01-09 10:43:47,200 [33] INFO loginfo - 进入方法
|
||||
2024-01-09 10:44:04,239 [33] INFO loginfo - 处理失败,数据:{"devs":[{"d":[{"dq":192,"m":"010400051","ts":1704342327,"v":88.667},{"dq":192,"m":"01040005","ts":1704342327,"v":5.000},{"dq":192,"m":"1040006","ts":1704342327,"v":4.000},{"dq":192,"m":"1040007","ts":1704342327,"v":3.000},{"dq":192,"m":"1040008","ts":1704342327,"v":2.000},{"dq":192,"m":"1040009","ts":1704342327,"v":1.000}],"dev":"310510043001"}],"pKey":"data","sn":"6e352ec4-82fc-4db4-80fd-6699871dd1d2","ts":1704342327,"ver":"2.0.0"}
|
||||
,原因:Table 'electricity_data__202401' already exists
|
||||
2024-01-09 10:44:10,643 [33] INFO loginfo - 进入方法
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-09 10:44:52,197 [3] INFO loginfo - 服务开始
|
||||
2024-01-09 10:44:52,321 [3] INFO loginfo - 开始
|
||||
2024-01-09 10:44:52,408 [3] INFO loginfo - 连接成功
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-09 10:44:52,410 [3] INFO loginfo - 服务开始
|
||||
2024-01-09 10:44:52,411 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-09 10:44:57,041 [12] INFO loginfo - 进入方法
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-09 10:46:28,574 [3] INFO loginfo - 服务开始
|
||||
2024-01-09 10:46:28,713 [3] INFO loginfo - 开始
|
||||
2024-01-09 10:46:33,806 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-09 10:46:33,807 [3] INFO loginfo - 服务开始
|
||||
2024-01-09 10:46:33,846 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-09 10:46:49,640 [8] INFO loginfo - 进入方法
|
||||
2024-01-09 10:47:01,938 [8] INFO loginfo - 数据1data{"devs":[{"d":[{"dq":192,"m":"010400051","ts":1704342327,"v":88.667},{"dq":192,"m":"01040005","ts":1704342327,"v":5.000},{"dq":192,"m":"1040006","ts":1704342327,"v":4.000},{"dq":192,"m":"1040007","ts":1704342327,"v":3.000},{"dq":192,"m":"1040008","ts":1704342327,"v":2.000},{"dq":192,"m":"1040009","ts":1704342327,"v":1.000}],"dev":"310510043001"}],"pKey":"data","sn":"6e352ec4-82fc-4db4-80fd-6699871dd1d2","ts":1704342327,"ver":"2.0.0"}
|
||||
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-09 10:50:00,648 [3] INFO loginfo - 服务开始
|
||||
2024-01-09 10:50:00,775 [3] INFO loginfo - 开始
|
||||
2024-01-09 10:50:01,888 [3] INFO loginfo - 连接成功
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-09 10:50:01,891 [3] INFO loginfo - 服务开始
|
||||
2024-01-09 10:50:01,893 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-09 10:50:07,243 [7] INFO loginfo - 进入方法
|
||||
2024-01-09 10:50:08,636 [7] INFO loginfo - 数据1data{"devs":[{"d":[{"dq":192,"m":"010400051","ts":1704342327,"v":88.667},{"dq":192,"m":"01040005","ts":1704342327,"v":5.000},{"dq":192,"m":"1040006","ts":1704342327,"v":4.000},{"dq":192,"m":"1040007","ts":1704342327,"v":3.000},{"dq":192,"m":"1040008","ts":1704342327,"v":2.000},{"dq":192,"m":"1040009","ts":1704342327,"v":1.000}],"dev":"310510043001"}],"pKey":"data","sn":"6e352ec4-82fc-4db4-80fd-6699871dd1d2","ts":1704342327,"ver":"2.0.0"}
|
||||
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-09 13:24:05,861 [3] INFO loginfo - 服务开始
|
||||
2024-01-09 13:24:05,970 [3] INFO loginfo - 开始
|
||||
2024-01-09 13:24:06,078 [3] INFO loginfo - 连接成功
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-09 13:24:06,082 [3] INFO loginfo - 服务开始
|
||||
2024-01-09 13:24:06,083 [3] INFO loginfo - 发布连接成功
|
|
@ -1,385 +0,0 @@
|
|||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 10:55:04,263 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 10:55:04,369 [3] INFO loginfo - 开始
|
||||
2024-01-18 10:55:09,471 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 10:55:09,472 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 10:55:09,521 [3] INFO loginfo - 发布连接成功
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 10:56:27,226 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 10:56:27,325 [3] INFO loginfo - 开始
|
||||
2024-01-18 10:56:32,411 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 10:56:32,412 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 10:56:32,449 [3] INFO loginfo - 发布连接成功
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 10:58:22,100 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 10:58:22,207 [3] INFO loginfo - 开始
|
||||
2024-01-18 10:58:27,302 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 10:58:27,303 [3] INFO loginfo - 服务开始
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 10:58:51,868 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 10:58:51,954 [3] INFO loginfo - 开始
|
||||
2024-01-18 10:58:57,036 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 10:58:57,038 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 10:58:58,988 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-18 10:59:13,079 [8] INFO loginfo - 进入方法
|
||||
2024-01-18 10:59:13,772 [8] INFO loginfo - 处理失败,数据:1q1111,原因:Unexpected character encountered while parsing number: q. Path '', line 1, position 1.
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 10:59:54,022 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 10:59:54,114 [3] INFO loginfo - 开始
|
||||
2024-01-18 10:59:59,200 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 10:59:59,201 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 11:00:10,467 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-18 11:00:28,025 [8] INFO loginfo - 进入方法
|
||||
2024-01-18 11:00:36,557 [8] INFO loginfo - 处理失败,数据:1q1111,原因:Unexpected character encountered while parsing number: q. Path '', line 1, position 1.
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 11:26:52,039 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 11:26:52,129 [3] INFO loginfo - 开始
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 11:51:26,413 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 11:51:26,529 [3] INFO loginfo - 开始
|
||||
2024-01-18 11:51:26,611 [3] INFO loginfo - 连接成功
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 11:51:26,614 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 11:51:33,381 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-18 11:52:18,689 [21] INFO loginfo - 进入方法
|
||||
2024-01-18 11:52:20,340 [15] INFO loginfo - 进入方法
|
||||
2024-01-18 11:52:22,470 [21] INFO loginfo - 处理失败,数据:J{"b":{"dvl":[{"da":"","dl":{"$.R.C1.2.CommStatus":1}}],"ts":"2024-01-18 11:52:12"}}
|
||||
,原因:Unexpected character encountered while parsing value: J. Path '', line 0, position 0.
|
||||
2024-01-18 11:52:22,472 [15] INFO loginfo - 处理失败,数据:J{"b":{"dvl":[{"da":"","dl":{"$.R.C1.2.CommStatus":1}}],"ts":"2024-01-18 11:52:12"}}
|
||||
,原因:Unexpected character encountered while parsing value: J. Path '', line 0, position 0.
|
||||
2024-01-18 11:52:22,717 [22] INFO loginfo - 进入方法
|
||||
2024-01-18 11:52:23,812 [21] INFO loginfo - 进入方法
|
||||
2024-01-18 11:52:24,486 [21] INFO loginfo - 处理失败,数据:J{"b":{"dvl":[{"da":"R.C1.2","dl":{"A1":3.001,"A2":3.001,"A3":3.001,"A4":3.001,"A5":3.001}}],"ts":"2024-01-18 11:52:12"}}
|
||||
,原因:Unexpected character encountered while parsing value: J. Path '', line 0, position 0.
|
||||
2024-01-18 11:52:24,687 [21] INFO loginfo - 进入方法
|
||||
2024-01-18 11:52:24,843 [22] INFO loginfo - 处理失败,数据:J{"b":{"dvl":[{"da":"R.C1.2","dl":{"A1":3.001,"A2":3.001,"A3":3.001,"A4":3.001,"A5":3.001}}],"ts":"2024-01-18 11:52:12"}}
|
||||
,原因:Unexpected character encountered while parsing value: J. Path '', line 0, position 0.
|
||||
2024-01-18 11:52:24,976 [22] INFO loginfo - 进入方法
|
||||
2024-01-18 11:52:24,989 [21] INFO loginfo - 处理失败,数据:J{"b":{"dvl":[{"da":"","dl":{"$.R.C1.5.CommStatus":1}}],"ts":"2024-01-18 11:52:12"}}
|
||||
,原因:Unexpected character encountered while parsing value: J. Path '', line 0, position 0.
|
||||
2024-01-18 11:52:25,374 [21] INFO loginfo - 进入方法
|
||||
2024-01-18 11:52:25,755 [22] INFO loginfo - 处理失败,数据:J{"b":{"dvl":[{"da":"","dl":{"$.R.C1.5.CommStatus":1}}],"ts":"2024-01-18 11:52:12"}}
|
||||
,原因:Unexpected character encountered while parsing value: J. Path '', line 0, position 0.
|
||||
2024-01-18 11:52:25,897 [15] INFO loginfo - 进入方法
|
||||
2024-01-18 11:52:26,103 [21] INFO loginfo - 处理失败,数据:J{"b":{"dvl":[{"da":"R.C1.5","dl":{"DI1":0}}],"ts":"2024-01-18 11:52:12"}}
|
||||
,原因:Unexpected character encountered while parsing value: J. Path '', line 0, position 0.
|
||||
2024-01-18 11:52:26,290 [22] INFO loginfo - 进入方法
|
||||
2024-01-18 11:52:26,308 [15] INFO loginfo - 处理失败,数据:J{"b":{"dvl":[{"da":"R.C1.5","dl":{"DI1":0}}],"ts":"2024-01-18 11:52:12"}}
|
||||
,原因:Unexpected character encountered while parsing value: J. Path '', line 0, position 0.
|
||||
2024-01-18 11:52:26,962 [15] INFO loginfo - 进入方法
|
||||
2024-01-18 11:52:26,975 [22] INFO loginfo - 处理失败,数据:J{"b":{"dvl":[{"da":"","dl":{"$.R.C1.6.CommStatus":1}}],"ts":"2024-01-18 11:52:12"}}
|
||||
,原因:Unexpected character encountered while parsing value: J. Path '', line 0, position 0.
|
||||
2024-01-18 11:52:27,102 [22] INFO loginfo - 进入方法
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 13:14:28,310 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 13:14:28,425 [3] INFO loginfo - 开始
|
||||
2024-01-18 13:14:33,516 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 13:14:33,518 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 13:14:42,990 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-18 13:15:32,514 [11] INFO loginfo - 进入方法
|
||||
2024-01-18 13:15:59,043 [11] INFO loginfo - 处理失败,数据:J{"b":{"dvl":[{"da":"R.C1.1","dl":{"A1":3.001,"A2":3.001,"A3":3.001,"A4":3.001,"A5":3.001}}],"ts":"2024-01-18 11:52:36"}},原因:Unexpected character encountered while parsing value: J. Path '', line 0, position 0.
|
||||
2024-01-18 13:16:07,168 [15] INFO loginfo - 进入方法
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 13:17:09,321 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 13:17:09,426 [3] INFO loginfo - 开始
|
||||
2024-01-18 13:17:14,521 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 13:17:14,522 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 13:17:17,770 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-18 13:17:34,856 [5] INFO loginfo - 进入方法
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 13:19:35,775 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 13:19:35,873 [3] INFO loginfo - 开始
|
||||
2024-01-18 13:19:40,966 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 13:19:40,967 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 13:19:41,003 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-18 13:20:00,779 [10] INFO loginfo - 进入方法
|
||||
2024-01-18 13:21:41,407 [10] INFO loginfo - 处理失败,数据:J{"b":{"dvl":[{"da":"R.C1.1","dl":{"A1":3.001,"A2":3.001,"A3":3.001,"A4":3.001,"A5":3.001}}],"ts":"2024-01-18 11:52:36"}},原因:Unexpected character encountered while parsing value: J. Path '', line 0, position 0.
|
||||
2024-01-18 13:21:41,408 [11] INFO loginfo - 网络异常,准备10秒后重新连接。
|
||||
2024-01-18 13:21:41,594 [10] INFO loginfo - 进入方法
|
||||
2024-01-18 13:21:56,557 [11] INFO loginfo - 准备重新连接服务器...
|
||||
2024-01-18 13:21:56,560 [11] INFO loginfo - 连接服务器成功!
|
||||
2024-01-18 13:22:00,093 [10] INFO loginfo - 处理失败,数据:{"b":{"dvl":[{"da":"R.C1.1","dl":{"A1":3.001,"A2":3.001,"A3":3.001,"A4":3.001,"A5":3.001}}],"ts":"2024-01-18 11:52:36"}},原因:Input string '3.001' is not a valid integer. Path 'b.dvl[0].dl.A1', line 1, position 44.
|
||||
2024-01-18 13:22:00,105 [10] INFO loginfo - 网络异常,准备10秒后重新连接。
|
||||
2024-01-18 13:22:11,977 [10] INFO loginfo - 准备重新连接服务器...
|
||||
2024-01-18 13:22:11,977 [19] INFO loginfo - 进入方法
|
||||
2024-01-18 13:22:16,143 [10] INFO loginfo - 连接服务器成功!
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 13:22:56,625 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 13:22:56,729 [3] INFO loginfo - 开始
|
||||
2024-01-18 13:23:01,825 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 13:23:01,826 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 13:23:01,863 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-18 13:23:20,365 [5] INFO loginfo - 进入方法
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 13:23:49,491 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 13:23:49,604 [3] INFO loginfo - 开始
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 13:24:12,365 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 13:24:12,459 [3] INFO loginfo - 开始
|
||||
2024-01-18 13:24:17,550 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 13:24:17,551 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 13:24:17,587 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-18 13:24:34,276 [8] INFO loginfo - 进入方法
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 13:25:02,166 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 13:25:02,292 [3] INFO loginfo - 开始
|
||||
2024-01-18 13:25:07,389 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 13:25:07,390 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 13:25:07,428 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-18 13:25:16,910 [8] INFO loginfo - 进入方法
|
||||
2024-01-18 13:25:17,633 [8] INFO loginfo - 数据1dataDataServer.api.get_data
|
||||
2024-01-18 13:25:33,796 [10] INFO loginfo - 进入方法
|
||||
2024-01-18 13:25:34,493 [10] INFO loginfo - 数据1dataDataServer.api.get_data
|
||||
2024-01-18 13:26:11,132 [18] INFO loginfo - 进入方法
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 13:30:40,355 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 13:30:40,487 [3] INFO loginfo - 开始
|
||||
2024-01-18 13:30:45,586 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 13:30:45,588 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 13:30:45,626 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-18 13:31:24,122 [14] INFO loginfo - 进入方法
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 13:32:21,569 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 13:32:21,686 [3] INFO loginfo - 开始
|
||||
2024-01-18 13:32:26,784 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 13:32:26,786 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 13:32:26,832 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-18 13:33:03,819 [15] INFO loginfo - 进入方法
|
||||
2024-01-18 13:36:41,970 [15] INFO loginfo - 处理失败,数据:J{"b":{"dvl":[{"da":"R.C1.1","dl":{"A1":3.001,"A2":3.001,"A3":3.001,"A4":3.001,"A5":3.001}}],"ts":"2024-01-18 11:52:36"}},原因:Unexpected character encountered while parsing value: J. Path '', line 0, position 0.
|
||||
2024-01-18 13:36:42,017 [11] INFO loginfo - 网络异常,准备10秒后重新连接。
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 13:36:57,969 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 13:36:58,093 [3] INFO loginfo - 开始
|
||||
2024-01-18 13:37:03,196 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 13:37:03,197 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 13:37:03,235 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-18 13:37:41,050 [13] INFO loginfo - 进入方法
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 13:38:22,140 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 13:38:22,275 [3] INFO loginfo - 开始
|
||||
2024-01-18 13:38:27,374 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 13:38:27,375 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 13:38:27,414 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-18 13:38:30,821 [8] INFO loginfo - 进入方法
|
||||
2024-01-18 13:38:43,942 [8] INFO loginfo - 数据1dataDataServer.api.get_data
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 13:54:53,404 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 13:54:53,533 [3] INFO loginfo - 开始
|
||||
2024-01-18 13:54:58,632 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 13:54:58,633 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 13:54:58,671 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-18 13:55:14,360 [6] INFO loginfo - 进入方法
|
||||
2024-01-18 13:55:19,436 [6] INFO loginfo - 数据1dataDataServer.api.get_data
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 13:56:39,493 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 13:56:39,616 [3] INFO loginfo - 开始
|
||||
2024-01-18 13:56:44,715 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 13:56:44,716 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 13:56:44,754 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-18 13:57:15,464 [14] INFO loginfo - 进入方法
|
||||
2024-01-18 13:57:18,141 [14] INFO loginfo - 数据1dataDataServer.api.get_data
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 14:01:17,807 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 14:01:17,936 [3] INFO loginfo - 开始
|
||||
2024-01-18 14:01:23,036 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 14:01:23,037 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 14:01:23,074 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-18 14:01:37,128 [6] INFO loginfo - 进入方法
|
||||
2024-01-18 14:01:41,892 [6] INFO loginfo - 数据1dataDataServer.api.get_data
|
||||
2024-01-18 14:02:00,330 [13] INFO loginfo - 进入方法
|
||||
2024-01-18 14:02:04,321 [13] INFO loginfo - 数据1dataDataServer.api.get_data
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 14:09:08,978 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 14:09:09,091 [3] INFO loginfo - 开始
|
||||
2024-01-18 14:09:14,192 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 14:09:14,193 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 14:09:14,231 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-18 14:09:48,896 [14] INFO loginfo - 进入方法
|
||||
2024-01-18 14:09:50,661 [14] INFO loginfo - 数据1dataDataServer.api.get_data
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 14:10:19,594 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 14:10:19,684 [3] INFO loginfo - 开始
|
||||
2024-01-18 14:10:24,782 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 14:10:24,783 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 14:10:24,819 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-18 14:10:39,183 [5] INFO loginfo - 进入方法
|
||||
2024-01-18 14:10:44,032 [5] INFO loginfo - 数据1dataDataServer.api.get_data
|
||||
2024-01-18 14:10:44,046 [5] INFO loginfo - 处理失败,数据:J{"b":{"dvl":[{"da":"R.C1.1","dl":{"A1":3.001,"A2":3.001,"A3":3.001,"A4":3.001,"A5":3.001}}],"ts":"2024-01-18 11:52:36"}},原因:给定关键字不在字典中。
|
||||
2024-01-18 14:10:57,371 [12] INFO loginfo - 进入方法
|
||||
2024-01-18 14:10:57,842 [12] INFO loginfo - 数据1dataDataServer.api.get_data
|
||||
2024-01-18 14:13:41,850 [12] INFO loginfo - 处理失败,数据:J{"b":{"dvl":[{"da":"R.C1.1","dl":{"A1":3.001,"A2":3.001,"A3":3.001,"A4":3.001,"A5":3.001}}],"ts":"2024-01-18 11:52:36"}},原因:给定关键字不在字典中。
|
||||
2024-01-18 14:13:41,915 [17] INFO loginfo - 网络异常,准备10秒后重新连接。
|
||||
2024-01-18 14:13:51,915 [17] INFO loginfo - 准备重新连接服务器...
|
||||
2024-01-18 14:13:51,916 [17] INFO loginfo - 连接服务器成功!
|
||||
2024-01-18 14:14:06,225 [17] INFO loginfo - 进入方法
|
||||
2024-01-18 14:14:22,201 [17] INFO loginfo - 数据1dataDataServer.api.get_data
|
||||
2024-01-18 14:14:35,660 [18] INFO loginfo - 进入方法
|
||||
2024-01-18 14:14:36,482 [18] INFO loginfo - 数据1dataDataServer.api.get_data
|
||||
2024-01-18 14:14:59,132 [22] INFO loginfo - 进入方法
|
||||
2024-01-18 14:15:02,195 [22] INFO loginfo - 数据1dataDataServer.api.get_data
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 14:24:36,426 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 14:24:36,564 [3] INFO loginfo - 开始
|
||||
2024-01-18 14:24:41,666 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 14:24:41,667 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 14:24:41,725 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-18 14:38:24,655 [35] INFO loginfo - 进入方法
|
||||
2024-01-18 14:38:25,016 [35] INFO loginfo - msg
|
||||
2024-01-18 14:38:27,732 [35] INFO loginfo - 数据1dataDataServer.api.get_data
|
||||
2024-01-18 14:38:27,815 [30] INFO loginfo - 进入方法
|
||||
2024-01-18 14:38:27,941 [30] INFO loginfo - msg
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 16:17:46,677 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 16:17:46,788 [3] INFO loginfo - 开始
|
||||
2024-01-18 16:17:46,888 [3] INFO loginfo - 连接成功
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 16:17:46,892 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 16:17:46,894 [3] INFO loginfo - 发布连接成功
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 16:18:58,098 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 16:18:58,233 [3] INFO loginfo - 开始
|
||||
2024-01-18 16:18:58,305 [3] INFO loginfo - 连接成功
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 16:18:58,307 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 16:18:58,309 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-18 16:19:33,066 [21] INFO loginfo - 进入方法
|
||||
2024-01-18 16:19:35,841 [20] INFO loginfo - 进入方法
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 16:21:03,246 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 16:21:03,376 [3] INFO loginfo - 开始
|
||||
2024-01-18 16:21:03,456 [3] INFO loginfo - 连接成功
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 16:21:03,458 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 16:21:03,460 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-18 16:21:17,479 [10] INFO loginfo - 进入方法
|
||||
2024-01-18 16:21:19,451 [12] INFO loginfo - 进入方法
|
||||
2024-01-18 16:21:31,399 [10] INFO loginfo - 数据2dataDataServer.api.get_data
|
||||
2024-01-18 16:21:33,164 [12] INFO loginfo - 数据2dataDataServer.api.get_data
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 16:22:41,505 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 16:22:41,603 [3] INFO loginfo - 开始
|
||||
2024-01-18 16:22:41,688 [3] INFO loginfo - 连接成功
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 16:22:41,691 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 16:22:41,693 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-18 16:22:49,501 [13] INFO loginfo - 进入方法
|
||||
2024-01-18 16:22:52,347 [12] INFO loginfo - 进入方法
|
||||
2024-01-18 16:23:00,637 [12] INFO loginfo - 数据2dataDataServer.api.get_data
|
||||
2024-01-18 16:23:00,637 [13] INFO loginfo - 数据2dataDataServer.api.get_data
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 16:29:26,487 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 16:29:26,611 [3] INFO loginfo - 开始
|
||||
2024-01-18 16:29:26,678 [3] INFO loginfo - 连接成功
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-18 16:29:26,679 [3] INFO loginfo - 服务开始
|
||||
2024-01-18 16:29:26,681 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-18 16:30:15,033 [20] INFO loginfo - 进入方法
|
||||
2024-01-18 16:30:16,227 [14] INFO loginfo - 进入方法
|
||||
2024-01-18 16:30:21,280 [20] INFO loginfo - 数据2dataDataServer.api.get_data
|
||||
2024-01-18 16:30:21,280 [14] INFO loginfo - 数据2dataDataServer.api.get_data
|
|
@ -1,76 +0,0 @@
|
|||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-22 10:42:04,973 [3] INFO loginfo - 服务开始
|
||||
2024-01-22 10:42:05,059 [3] INFO loginfo - 开始
|
||||
2024-01-22 10:42:10,166 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-22 10:42:10,169 [3] INFO loginfo - 服务开始
|
||||
2024-01-22 10:42:10,242 [3] INFO loginfo - 发布连接成功
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-22 13:09:54,175 [3] INFO loginfo - 服务开始
|
||||
2024-01-22 13:09:54,281 [3] INFO loginfo - 开始
|
||||
2024-01-22 13:09:59,375 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-22 13:09:59,376 [3] INFO loginfo - 服务开始
|
||||
2024-01-22 13:09:59,425 [3] INFO loginfo - 发布连接成功
|
||||
2024-01-22 13:10:13,675 [5] INFO loginfo - 进入方法服务
|
||||
2024-01-22 13:11:35,383 [5] INFO loginfo - 处理失败,数据:J{"b":{"dvl":[{"da":"R1.C1.370510043186","dl":{"02010007":9649,"07010002":-1.258}}],"ts":"2024-01-22 13:09:21"}},原因:Reading from the stream has failed.
|
||||
2024-01-22 13:11:35,392 [6] INFO loginfo - 进入方法服务
|
||||
2024-01-22 13:11:39,509 [6] INFO loginfo - 处理失败,数据:J{"b":{"dvl":[{"da":"R1.C1.370510043186","dl":{"02010007":9649,"07010002":-1.258}}],"ts":"2024-01-22 13:09:21"}},原因:Unable to connect to any of the specified MySQL hosts.
|
||||
2024-01-22 13:11:43,103 [13] INFO loginfo - 进入方法服务
|
||||
2024-01-22 13:12:21,015 [13] INFO loginfo - 处理失败,数据:J{"b":{"dvl":[{"da":"R1.C1.370510043186","dl":{"02010007":9649,"07010002":-1.258}}],"ts":"2024-01-22 13:09:21"}},原因:Unable to connect to any of the specified MySQL hosts.
|
||||
2024-01-22 13:12:21,198 [14] INFO loginfo - 进入方法服务
|
||||
2024-01-22 13:12:25,692 [14] INFO loginfo - 处理失败,数据:J{"b":{"dvl":[{"da":"R1.C1.370510043186","dl":{"02010007":9649,"07010002":-1.258}}],"ts":"2024-01-22 13:09:21"}},原因:Unable to connect to any of the specified MySQL hosts.
|
||||
2024-01-22 13:12:34,702 [12] INFO loginfo - 进入方法服务
|
||||
2024-01-22 13:13:15,389 [12] INFO loginfo - 处理失败,数据:J{"b":{"dvl":[{"da":"R1.C1.370510043186","dl":{"02010007":9649,"07010002":-1.258}}],"ts":"2024-01-22 13:09:21"}},原因:Unable to connect to any of the specified MySQL hosts.
|
||||
2024-01-22 13:13:26,865 [14] INFO loginfo - 进入方法服务
|
||||
2024-01-22 13:13:35,108 [14] INFO loginfo - msg
|
||||
2024-01-22 13:13:35,280 [14] INFO loginfo - 水表:DataServer.api.get_data
|
||||
2024-01-22 13:13:58,640 [13] INFO loginfo - 进入方法服务
|
||||
2024-01-22 13:14:00,899 [13] INFO loginfo - msg
|
||||
2024-01-22 13:14:00,900 [13] INFO loginfo - 水表:DataServer.api.get_data
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-22 13:43:40,969 [3] INFO loginfo - 服务开始
|
||||
2024-01-22 13:43:41,103 [3] INFO loginfo - 开始
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-22 13:54:02,205 [3] INFO loginfo - 服务开始
|
||||
2024-01-22 13:54:02,319 [3] INFO loginfo - 开始
|
||||
2024-01-22 13:54:07,413 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-22 14:15:23,073 [3] INFO loginfo - 服务开始
|
||||
2024-01-22 14:15:23,169 [3] INFO loginfo - 开始
|
||||
2024-01-22 14:15:28,248 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-22 14:31:43,615 [3] INFO loginfo - 服务开始
|
||||
2024-01-22 14:31:43,725 [3] INFO loginfo - 开始
|
||||
2024-01-22 14:31:48,803 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-22 14:40:07,752 [3] INFO loginfo - 服务开始
|
||||
2024-01-22 14:40:07,847 [3] INFO loginfo - 开始
|
||||
2024-01-22 14:40:12,918 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-22 16:31:06,275 [3] INFO loginfo - 服务开始
|
||||
2024-01-22 16:31:06,372 [3] INFO loginfo - 开始
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-22 16:31:13,158 [3] INFO loginfo - 服务开始
|
||||
2024-01-22 16:31:13,286 [3] INFO loginfo - 开始
|
||||
2024-01-22 16:31:18,369 [3] INFO loginfo - 连接失败
|
|
@ -1,337 +0,0 @@
|
|||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 09:52:19,465 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 09:52:19,580 [3] INFO loginfo - 开始
|
||||
2024-01-23 09:52:24,679 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 09:52:24,681 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 09:52:24,681 [3] INFO loginfo - 开始
|
||||
2024-01-23 09:52:29,733 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 09:52:56,679 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 09:52:56,814 [3] INFO loginfo - 开始
|
||||
2024-01-23 09:53:01,896 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 09:53:01,897 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 09:53:04,043 [3] INFO loginfo - 开始
|
||||
2024-01-23 09:53:09,089 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 09:53:18,854 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 09:53:18,977 [3] INFO loginfo - 开始
|
||||
2024-01-23 09:53:24,055 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 09:53:24,057 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 09:53:30,612 [3] INFO loginfo - 开始
|
||||
2024-01-23 09:54:06,311 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 09:55:17,270 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 09:55:17,397 [3] INFO loginfo - 开始
|
||||
2024-01-23 09:55:22,479 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 09:55:22,481 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 09:55:26,428 [3] INFO loginfo - 开始
|
||||
2024-01-23 09:55:31,476 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 09:58:48,973 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 09:58:49,094 [3] INFO loginfo - 开始
|
||||
2024-01-23 09:58:54,177 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 09:58:54,178 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 09:59:04,981 [3] INFO loginfo - 开始
|
||||
2024-01-23 09:59:10,035 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 10:00:16,080 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 10:00:16,218 [3] INFO loginfo - 开始
|
||||
2024-01-23 10:00:16,303 [3] INFO loginfo - 连接成功
|
||||
2024-01-23 10:00:33,177 [11] INFO loginfo - 进入方法
|
||||
2024-01-23 10:00:33,178 [11] INFO loginfo - count0
|
||||
2024-01-23 10:01:03,538 [11] INFO loginfo - msg
|
||||
2024-01-23 10:01:41,721 [11] INFO loginfo - 状态:DataServer.api.get_data_state
|
||||
2024-01-23 10:01:41,920 [11] INFO loginfo - 处理失败,数据:J{"b":{"dvl":[{"da":"qd.C3.KT04","dl":{"DI1":"bad:0","DI2":"bad:0","DI3":"bad:0","DO1":"bad:0","DO2":"bad:0"}}],"ts":"2024-01-22 12:45:45"}},原因:输入字符串的格式不正确。
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 10:13:19,818 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 10:13:19,944 [3] INFO loginfo - 开始
|
||||
2024-01-23 10:13:20,020 [3] INFO loginfo - 连接成功
|
||||
2024-01-23 10:13:34,430 [6] INFO loginfo - 进入方法
|
||||
2024-01-23 10:13:34,430 [6] INFO loginfo - count0
|
||||
2024-01-23 10:13:38,128 [6] INFO loginfo - msg
|
||||
2024-01-23 10:13:38,293 [6] INFO loginfo - 状态:DataServer.api.get_data_state
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 10:14:57,506 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 10:14:57,615 [3] INFO loginfo - 开始
|
||||
2024-01-23 10:14:57,689 [3] INFO loginfo - 连接成功
|
||||
2024-01-23 10:15:01,086 [10] INFO loginfo - 进入方法
|
||||
2024-01-23 10:15:01,086 [10] INFO loginfo - count0
|
||||
2024-01-23 10:15:04,233 [10] INFO loginfo - msg
|
||||
2024-01-23 10:15:04,393 [10] INFO loginfo - 状态:DataServer.api.get_data_state
|
||||
2024-01-23 10:16:35,428 [20] INFO loginfo - 进入方法
|
||||
2024-01-23 10:16:35,428 [20] INFO loginfo - count0
|
||||
2024-01-23 10:16:38,760 [20] INFO loginfo - msg
|
||||
2024-01-23 10:16:39,383 [20] INFO loginfo - 状态:DataServer.api.get_data_state
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 10:17:51,331 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 10:17:51,460 [3] INFO loginfo - 开始
|
||||
2024-01-23 10:17:51,543 [3] INFO loginfo - 连接成功
|
||||
2024-01-23 10:18:22,494 [15] INFO loginfo - 进入方法
|
||||
2024-01-23 10:18:22,495 [15] INFO loginfo - count0
|
||||
2024-01-23 10:18:25,476 [15] INFO loginfo - msg
|
||||
2024-01-23 10:18:25,652 [15] INFO loginfo - 状态:DataServer.api.get_data_state
|
||||
2024-01-23 10:18:49,475 [15] INFO loginfo - 处理失败,数据:J{"b":{"dvl":[{"da":"qd.C3.KT04","dl":{"DI1":"bad:0","DI2":"bad:0","DI3":"bad:0","DO1":"bad:0","DO2":"bad:0"}}],"ts":"2024-01-22 12:45:45"}},原因:给定关键字不在字典中。
|
||||
2024-01-23 10:18:56,409 [18] INFO loginfo - 进入方法
|
||||
2024-01-23 10:18:56,409 [18] INFO loginfo - count0
|
||||
2024-01-23 10:18:58,173 [18] INFO loginfo - msg
|
||||
2024-01-23 10:18:58,173 [18] INFO loginfo - 状态:DataServer.api.get_data_state
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 10:19:51,017 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 10:19:51,162 [3] INFO loginfo - 开始
|
||||
2024-01-23 10:19:51,229 [3] INFO loginfo - 连接成功
|
||||
2024-01-23 10:20:03,648 [9] INFO loginfo - 进入方法
|
||||
2024-01-23 10:20:03,649 [9] INFO loginfo - count0
|
||||
2024-01-23 10:20:06,073 [9] INFO loginfo - msg
|
||||
2024-01-23 10:20:06,232 [9] INFO loginfo - 状态:DataServer.api.get_data_state
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 10:21:57,510 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 10:21:57,634 [3] INFO loginfo - 开始
|
||||
2024-01-23 10:21:57,703 [3] INFO loginfo - 连接成功
|
||||
2024-01-23 10:22:05,792 [8] INFO loginfo - 进入方法
|
||||
2024-01-23 10:22:05,792 [8] INFO loginfo - count0
|
||||
2024-01-23 10:22:08,701 [8] INFO loginfo - msg
|
||||
2024-01-23 10:22:08,867 [8] INFO loginfo - 状态:DataServer.api.get_data_state
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 10:23:13,756 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 10:23:13,889 [3] INFO loginfo - 开始
|
||||
2024-01-23 10:23:13,960 [3] INFO loginfo - 连接成功
|
||||
2024-01-23 10:23:24,648 [10] INFO loginfo - 进入方法
|
||||
2024-01-23 10:23:24,648 [10] INFO loginfo - count0
|
||||
2024-01-23 10:23:26,975 [10] INFO loginfo - msg
|
||||
2024-01-23 10:23:27,140 [10] INFO loginfo - 状态:DataServer.api.get_data_state
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 10:41:16,939 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 10:41:17,107 [3] INFO loginfo - 开始
|
||||
2024-01-23 10:41:17,197 [3] INFO loginfo - 连接成功
|
||||
2024-01-23 10:41:27,217 [8] INFO loginfo - 进入方法
|
||||
2024-01-23 10:41:27,218 [8] INFO loginfo - count0
|
||||
2024-01-23 10:41:29,804 [8] INFO loginfo - msg
|
||||
2024-01-23 10:41:29,965 [8] INFO loginfo - 状态:DataServer.api.get_data_state
|
||||
2024-01-23 10:43:01,703 [20] INFO loginfo - 进入方法
|
||||
2024-01-23 10:43:01,703 [20] INFO loginfo - count0
|
||||
2024-01-23 10:43:07,210 [20] INFO loginfo - msg
|
||||
2024-01-23 10:43:07,210 [20] INFO loginfo - 状态:DataServer.api.get_data_state
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 10:54:02,529 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 10:54:02,648 [3] INFO loginfo - 开始
|
||||
2024-01-23 10:54:02,749 [3] INFO loginfo - 连接成功
|
||||
2024-01-23 10:54:13,423 [8] INFO loginfo - 进入方法
|
||||
2024-01-23 10:54:13,423 [8] INFO loginfo - count0
|
||||
2024-01-23 10:54:15,626 [8] INFO loginfo - msg
|
||||
2024-01-23 10:54:15,786 [8] INFO loginfo - 状态:DataServer.api.get_data_state
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 10:55:19,114 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 10:55:19,243 [3] INFO loginfo - 开始
|
||||
2024-01-23 10:55:19,331 [3] INFO loginfo - 连接成功
|
||||
2024-01-23 10:55:37,408 [10] INFO loginfo - 进入方法
|
||||
2024-01-23 10:55:37,409 [10] INFO loginfo - count0
|
||||
2024-01-23 10:55:41,021 [10] INFO loginfo - msg
|
||||
2024-01-23 10:55:41,194 [10] INFO loginfo - 状态:DataServer.api.get_data_state
|
||||
2024-01-23 10:56:14,640 [6] INFO loginfo - 进入方法
|
||||
2024-01-23 10:56:14,640 [6] INFO loginfo - count0
|
||||
2024-01-23 10:56:17,408 [6] INFO loginfo - msg
|
||||
2024-01-23 10:56:17,408 [6] INFO loginfo - 状态:DataServer.api.get_data_state
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 10:57:07,732 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 10:57:07,950 [3] INFO loginfo - 开始
|
||||
2024-01-23 10:57:08,052 [3] INFO loginfo - 连接成功
|
||||
2024-01-23 10:57:08,053 [3] INFO loginfo - 连接失败
|
||||
2024-01-23 10:57:17,460 [5] INFO loginfo - 进入方法
|
||||
2024-01-23 10:57:17,460 [5] INFO loginfo - count0
|
||||
2024-01-23 10:57:19,644 [5] INFO loginfo - msg
|
||||
2024-01-23 10:57:19,839 [5] INFO loginfo - 状态:DataServer.api.get_data_state
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 14:52:46,147 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 14:52:46,285 [3] INFO loginfo - 开始
|
||||
2024-01-23 14:52:46,397 [3] INFO loginfo - 连接成功
|
||||
2024-01-23 14:52:46,397 [3] INFO loginfo - 连接失败
|
||||
2024-01-23 14:52:54,325 [8] INFO loginfo - 进入方法
|
||||
2024-01-23 14:52:54,325 [8] INFO loginfo - count0
|
||||
2024-01-23 14:53:03,235 [8] INFO loginfo - 气象站
|
||||
2024-01-23 14:53:03,907 [8] INFO loginfo - 气象站:DataServer.api.get_data
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 14:54:13,748 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 14:54:13,860 [3] INFO loginfo - 开始
|
||||
2024-01-23 14:54:13,954 [3] INFO loginfo - 连接成功
|
||||
2024-01-23 14:54:13,954 [3] INFO loginfo - 连接失败
|
||||
2024-01-23 14:54:17,037 [11] INFO loginfo - 进入方法
|
||||
2024-01-23 14:54:17,037 [11] INFO loginfo - count0
|
||||
2024-01-23 14:54:20,068 [11] INFO loginfo - 气象站
|
||||
2024-01-23 14:54:20,239 [11] INFO loginfo - 气象站:DataServer.api.get_data
|
||||
2024-01-23 14:54:20,298 [11] INFO loginfo - 处理失败,数据:J{"b":{"dvl":[{"da":"R.C2.370510043185","dl":{"10分钟平均大气能见度":0.000,"CO2浓度":418.000,"CO浓度":0.000,"H2S浓度":0.000,"NH3浓度1":0.000,"NO2浓度":0.000,"O2浓度":0.000,"O3浓度":0.000,"PM10":8.000,"PM2_5":6.000,"SO2浓度":0.000,"TVOC浓度":0.000,"光合有效辐射":0.000,"光学雨量":0.000,"光照度低16位":-19896.000,"光照度高16位":0.000,"噪声":30.000,"土壤1EC":0.000,"土壤1PH值":0.000,"土壤1温度":0.000,"土壤1湿度":0.000,"土壤2EC":0.000,"土壤2PH值":0.000,"土壤2温度":0.000,"土壤2湿度":0.000,"土壤3EC":0.000,"土壤3PH值":-14.900,"土壤3温度":0.000,"土壤3湿度":0.000,"土壤4EC":57.000,"土壤4温度":0.000,"土壤4湿度":0.000,"大气压力":103.500,"实时大气能见度":0.000,"当前雨量":0.000,"总辐射":112.000,"日雨量":0.000,"氮含量暂存值":0.000,"瞬时雨量":0.000,"磷含量暂存值":0.000,"空气温度":-2.400,"空气湿度":31.800,"紫外线指数":3.000,"累计雨量低16位":29.200,"累计雨量高16位":0.000,"蒸发量":0.000,"负氧离子1":0.000,"负氧离子2":0.000,"钾含量暂存值":0.000,"雨雪状态1":0.000,"风力":0.000,"风向":3.000,"风向度数":135.000,"风速":0.000}}],"ts":"2024-01-23 14:49:57"}},原因:给定关键字不在字典中。
|
||||
2024-01-23 14:54:49,724 [16] INFO loginfo - 进入方法
|
||||
2024-01-23 14:54:49,724 [16] INFO loginfo - count0
|
||||
2024-01-23 14:54:53,014 [16] INFO loginfo - 气象站
|
||||
2024-01-23 14:54:53,682 [16] INFO loginfo - 气象站:DataServer.api.get_data
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 14:55:50,001 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 14:55:50,129 [3] INFO loginfo - 开始
|
||||
2024-01-23 14:55:50,205 [3] INFO loginfo - 连接成功
|
||||
2024-01-23 14:55:50,205 [3] INFO loginfo - 连接失败
|
||||
2024-01-23 14:56:11,807 [12] INFO loginfo - 进入方法
|
||||
2024-01-23 14:56:11,807 [12] INFO loginfo - count0
|
||||
2024-01-23 14:56:18,117 [12] INFO loginfo - 气象站
|
||||
2024-01-23 14:56:18,299 [12] INFO loginfo - 气象站:DataServer.api.get_data
|
||||
2024-01-23 14:56:18,362 [12] INFO loginfo - 处理失败,数据:J{"b":{"dvl":[{"da":"R.C2.370510043185","dl":{"10分钟平均大气能见度":0.000,"CO2浓度":418.000,"CO浓度":0.000,"H2S浓度":0.000,"NH3浓度1":0.000,"NO2浓度":0.000,"O2浓度":0.000,"O3浓度":0.000,"PM10":8.000,"PM2_5":6.000,"SO2浓度":0.000,"TVOC浓度":0.000,"光合有效辐射":0.000,"光学雨量":0.000,"光照度低16位":-19896.000,"光照度高16位":0.000,"噪声":30.000,"土壤1EC":0.000,"土壤1PH值":0.000,"土壤1温度":0.000,"土壤1湿度":0.000,"土壤2EC":0.000,"土壤2PH值":0.000,"土壤2温度":0.000,"土壤2湿度":0.000,"土壤3EC":0.000,"土壤3PH值":-14.900,"土壤3温度":0.000,"土壤3湿度":0.000,"土壤4EC":57.000,"土壤4温度":0.000,"土壤4湿度":0.000,"大气压力":103.500,"实时大气能见度":0.000,"当前雨量":0.000,"总辐射":112.000,"日雨量":0.000,"氮含量暂存值":0.000,"瞬时雨量":0.000,"磷含量暂存值":0.000,"空气温度":-2.400,"空气湿度":31.800,"紫外线指数":3.000,"累计雨量低16位":29.200,"累计雨量高16位":0.000,"蒸发量":0.000,"负氧离子1":0.000,"负氧离子2":0.000,"钾含量暂存值":0.000,"雨雪状态1":0.000,"风力":0.000,"风向":3.000,"风向度数":135.000,"风速":0.000}}],"ts":"2024-01-23 14:49:57"}},原因:给定关键字不在字典中。
|
||||
2024-01-23 14:56:40,251 [8] INFO loginfo - 进入方法
|
||||
2024-01-23 14:56:40,251 [8] INFO loginfo - count0
|
||||
2024-01-23 14:56:44,329 [8] INFO loginfo - 气象站
|
||||
2024-01-23 14:56:44,786 [8] INFO loginfo - 气象站:DataServer.api.get_data
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 14:58:56,418 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 14:58:56,548 [3] INFO loginfo - 开始
|
||||
2024-01-23 14:58:56,694 [3] INFO loginfo - 连接成功
|
||||
2024-01-23 14:58:56,694 [3] INFO loginfo - 连接失败
|
||||
2024-01-23 14:59:02,211 [8] INFO loginfo - 进入方法
|
||||
2024-01-23 14:59:02,212 [8] INFO loginfo - count0
|
||||
2024-01-23 14:59:05,126 [8] INFO loginfo - 气象站
|
||||
2024-01-23 14:59:05,556 [8] INFO loginfo - 气象站:DataServer.api.get_data
|
||||
2024-01-23 14:59:05,767 [8] INFO loginfo - 处理失败,数据:J{"b":{"dvl":[{"da":"R.C2.370510043185","dl":{"10分钟平均大气能见度":0.000,"CO2浓度":418.000,"CO浓度":0.000,"H2S浓度":0.000,"NH3浓度1":0.000,"NO2浓度":0.000,"O2浓度":0.000,"O3浓度":0.000,"PM10":8.000,"PM2_5":6.000,"SO2浓度":0.000,"TVOC浓度":0.000,"光合有效辐射":0.000,"光学雨量":0.000,"光照度低16位":-19896.000,"光照度高16位":0.000,"噪声":30.000,"土壤1EC":0.000,"土壤1PH值":0.000,"土壤1温度":0.000,"土壤1湿度":0.000,"土壤2EC":0.000,"土壤2PH值":0.000,"土壤2温度":0.000,"土壤2湿度":0.000,"土壤3EC":0.000,"土壤3PH值":-14.900,"土壤3温度":0.000,"土壤3湿度":0.000,"土壤4EC":57.000,"土壤4温度":0.000,"土壤4湿度":0.000,"大气压力":103.500,"实时大气能见度":0.000,"当前雨量":0.000,"总辐射":112.000,"日雨量":0.000,"氮含量暂存值":0.000,"瞬时雨量":0.000,"磷含量暂存值":0.000,"空气温度":-2.400,"空气湿度":31.800,"紫外线指数":3.000,"累计雨量低16位":29.200,"累计雨量高16位":0.000,"蒸发量":0.000,"负氧离子1":0.000,"负氧离子2":0.000,"钾含量暂存值":0.000,"雨雪状态1":0.000,"风力":0.000,"风向":3.000,"风向度数":135.000,"风速":0.000}}],"ts":"2024-01-23 14:49:57"}},原因:Duplicate entry 'a31c26514b684260a6f6a3a53e29d8bc' for key 'PRIMARY'
|
||||
2024-01-23 14:59:33,248 [14] INFO loginfo - 进入方法
|
||||
2024-01-23 14:59:33,249 [14] INFO loginfo - count0
|
||||
2024-01-23 14:59:37,256 [14] INFO loginfo - 气象站
|
||||
2024-01-23 14:59:37,685 [14] INFO loginfo - 气象站:DataServer.api.get_data
|
||||
2024-01-23 14:59:54,309 [18] INFO loginfo - 进入方法
|
||||
2024-01-23 14:59:54,309 [18] INFO loginfo - count0
|
||||
2024-01-23 15:00:18,978 [18] INFO loginfo - 气象站
|
||||
2024-01-23 15:00:18,985 [18] INFO loginfo - 气象站:DataServer.api.get_data
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 15:04:45,592 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 15:04:45,713 [3] INFO loginfo - 开始
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 15:05:29,168 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 15:05:29,498 [3] INFO loginfo - 开始
|
||||
2024-01-23 15:05:32,150 [3] INFO loginfo - 连接成功
|
||||
2024-01-23 15:05:32,150 [3] INFO loginfo - 连接失败
|
||||
2024-01-23 15:05:46,571 [11] INFO loginfo - 进入方法
|
||||
2024-01-23 15:05:46,573 [11] INFO loginfo - count0
|
||||
2024-01-23 15:05:53,413 [11] INFO loginfo - 气象站
|
||||
2024-01-23 15:05:54,413 [11] INFO loginfo - 气象站:DataServer.api.get_data
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 15:06:54,679 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 15:06:54,805 [3] INFO loginfo - 开始
|
||||
2024-01-23 15:06:54,879 [3] INFO loginfo - 连接成功
|
||||
2024-01-23 15:06:54,879 [3] INFO loginfo - 连接失败
|
||||
2024-01-23 15:07:09,708 [10] INFO loginfo - 进入方法
|
||||
2024-01-23 15:07:09,708 [10] INFO loginfo - count0
|
||||
2024-01-23 15:07:13,756 [10] INFO loginfo - 气象站
|
||||
2024-01-23 15:07:14,012 [10] INFO loginfo - 气象站:DataServer.api.get_data
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 15:14:22,566 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 15:14:22,711 [3] INFO loginfo - 开始
|
||||
2024-01-23 15:14:22,791 [3] INFO loginfo - 连接成功
|
||||
2024-01-23 15:14:22,791 [3] INFO loginfo - 连接失败
|
||||
2024-01-23 15:14:45,029 [15] INFO loginfo - 进入方法
|
||||
2024-01-23 15:14:45,029 [15] INFO loginfo - count0
|
||||
2024-01-23 15:14:54,996 [15] INFO loginfo - 气象站
|
||||
2024-01-23 15:14:55,191 [15] INFO loginfo - 气象站:DataServer.api.get_data
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 18:39:45,336 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 18:39:45,454 [3] INFO loginfo - 开始
|
||||
2024-01-23 18:39:45,545 [3] INFO loginfo - 连接成功
|
||||
2024-01-23 18:39:45,545 [3] INFO loginfo - 连接失败
|
||||
2024-01-23 18:39:50,697 [10] INFO loginfo - 进入方法
|
||||
2024-01-23 18:39:50,697 [10] INFO loginfo - count0
|
||||
2024-01-23 18:39:50,951 [10] INFO loginfo - 状态表
|
||||
2024-01-23 18:39:51,141 [10] INFO loginfo - 状态:DataServer.api.get_data_state
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 18:53:33,648 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 18:53:33,777 [3] INFO loginfo - 开始
|
||||
2024-01-23 18:53:33,847 [3] INFO loginfo - 连接成功
|
||||
2024-01-23 18:53:33,847 [3] INFO loginfo - 连接失败
|
||||
2024-01-23 18:54:07,809 [17] INFO loginfo - 进入方法
|
||||
2024-01-23 18:54:07,809 [17] INFO loginfo - count0
|
||||
2024-01-23 18:54:08,043 [17] INFO loginfo - 状态表msgJ{"b":{"dvl":[{"da":"qd.C3.KT05","dl":{"DI4":"bad:0","DI5":"bad:0","DI6":"bad:0","DO1":"bad:0","DO2":"bad:0"}}],"ts":"2024-01-22 12:45:45"}}
|
||||
2024-01-23 18:54:08,219 [17] INFO loginfo - 状态:DataServer.api.get_data_state
|
||||
2024-01-23 18:55:32,545 [5] INFO loginfo - 进入方法
|
||||
2024-01-23 18:55:32,545 [5] INFO loginfo - count0
|
||||
2024-01-23 18:55:32,546 [5] INFO loginfo - 状态表msgJ{"b":{"dvl":[{"da":"qd.C3.KT05","dl":{"DI4":"bad:0","DI5":"bad:0","DI6":"bad:0","DO1":"bad:0","DO2":"bad:0"}}],"ts":"2024-01-22 12:45:45"}}
|
||||
2024-01-23 18:55:32,546 [5] INFO loginfo - 状态:DataServer.api.get_data_state
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 19:02:58,134 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 19:02:58,255 [3] INFO loginfo - 开始
|
||||
2024-01-23 19:02:58,333 [3] INFO loginfo - 连接成功
|
||||
2024-01-23 19:02:58,333 [3] INFO loginfo - 连接失败
|
||||
2024-01-23 19:03:14,313 [10] INFO loginfo - 进入方法
|
||||
2024-01-23 19:03:14,314 [10] INFO loginfo - count0
|
||||
2024-01-23 19:03:14,602 [10] INFO loginfo - 状态表msgJ{"b":{"dvl":[{"da":"qd.C3.KT05","dl":{"DI4":"bad:0","DI5":"bad:0","DI6":"bad:0","DO1":"bad:0","DO2":"bad:0"}}],"ts":"2024-01-22 12:45:45"}}
|
||||
2024-01-23 19:03:14,811 [10] INFO loginfo - 状态:DataServer.api.get_data_state
|
||||
2024-01-23 19:04:12,095 [13] INFO loginfo - 进入方法
|
||||
2024-01-23 19:04:12,095 [13] INFO loginfo - count0
|
||||
2024-01-23 19:04:12,097 [13] INFO loginfo - 状态表msgJ{"b":{"dvl":[{"da":"qd.C3.KT06","dl":{"DI8":"bad:0","DI9":"bad:0","DI10":"bad:0","DO1":"bad:0","DO2":"bad:0"}}],"ts":"2024-01-22 12:45:45"}}
|
||||
2024-01-23 19:04:12,098 [13] INFO loginfo - 状态:DataServer.api.get_data_state
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-23 19:07:19,415 [3] INFO loginfo - 服务开始
|
||||
2024-01-23 19:07:19,528 [3] INFO loginfo - 开始
|
||||
2024-01-23 19:07:19,597 [3] INFO loginfo - 连接成功
|
||||
2024-01-23 19:07:19,597 [3] INFO loginfo - 连接失败
|
||||
2024-01-23 19:07:34,015 [5] INFO loginfo - 进入方法
|
||||
2024-01-23 19:07:34,015 [5] INFO loginfo - count0
|
||||
2024-01-23 19:07:39,211 [5] INFO loginfo - 气象站msgJ{"b":{"dvl":[{"da":"R.C2.370510043185","dl":{"10分钟平均大气能见度":0.000,"CO2浓度":418.000,"CO浓度":0.000,"H2S浓度":0.000,"NH3浓度1":0.000,"NO2浓度":0.000,"O2浓度":0.000,"O3浓度":0.000,"PM10":8.000,"PM2_5":6.000,"SO2浓度":0.000,"TVOC浓度":0.000,"光合有效辐射":0.000,"光学雨量":0.000,"光照度低16位":-19896.000,"光照度高16位":0.000,"噪声":30.000,"土壤1EC":0.000,"土壤1PH值":0.000,"土壤1温度":0.000,"土壤1湿度":0.000,"土壤2EC":0.000,"土壤2PH值":0.000,"土壤2温度":0.000,"土壤2湿度":0.000,"土壤3EC":0.000,"土壤3PH值":-14.900,"土壤3温度":0.000,"土壤3湿度":0.000,"土壤4EC":57.000,"土壤4温度":0.000,"土壤4湿度":0.000,"大气压力":103.500,"实时大气能见度":0.000,"当前雨量":0.000,"总辐射":112.000,"日雨量":0.000,"氮含量暂存值":0.000,"瞬时雨量":0.000,"磷含量暂存值":0.000,"空气温度":-2.400,"空气湿度":31.800,"紫外线指数":3.000,"累计雨量低16位":29.200,"累计雨量高16位":0.000,"蒸发量":0.000,"负氧离子1":0.000,"负氧离子2":0.000,"钾含量暂存值":0.000,"雨雪状态1":0.000,"风力":0.000,"风向":3.000,"风向度数":135.000,"风速":0.000}}],"ts":"2024-01-23 14:49:57"}}
|
||||
2024-01-23 19:07:39,414 [5] INFO loginfo - 气象站:DataServer.api.get_data
|
|
@ -1,110 +0,0 @@
|
|||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-24 12:08:07,990 [3] INFO loginfo - 服务开始
|
||||
2024-01-24 12:08:08,099 [3] INFO loginfo - 开始
|
||||
2024-01-24 12:08:08,159 [3] INFO loginfo - 连接成功
|
||||
2024-01-24 12:08:08,160 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-24 12:09:39,825 [3] INFO loginfo - 服务开始
|
||||
2024-01-24 12:09:39,956 [3] INFO loginfo - 开始
|
||||
2024-01-24 12:09:40,074 [3] INFO loginfo - 连接成功
|
||||
2024-01-24 12:09:40,075 [3] INFO loginfo - 连接失败
|
||||
2024-01-24 12:09:42,339 [6] INFO loginfo - 进入方法
|
||||
2024-01-24 12:09:42,340 [6] INFO loginfo - count0
|
||||
2024-01-24 12:09:44,837 [6] INFO loginfo - 处理失败,数据:J{"b":{"dvl":[{"da":"R1.C1.370510043186","dl":{"02010007":9649,"07010002":-1.258}}],"ts":"2024-01-24 12:07:57"}},原因:Unable to connect to any of the specified MySQL hosts.
|
||||
2024-01-24 12:11:52,147 [14] INFO loginfo - 进入方法
|
||||
2024-01-24 12:11:52,147 [14] INFO loginfo - count0
|
||||
2024-01-24 12:11:59,613 [14] INFO loginfo - 水表msgJ{"b":{"dvl":[{"da":"R1.C1.370510043186","dl":{"02010007":9649,"07010002":-1.258}}],"ts":"2024-01-24 12:07:57"}}
|
||||
2024-01-24 12:11:59,793 [14] INFO loginfo - 水表:DataServer.api.get_dataJ{"b":{"dvl":[{"da":"R1.C1.370510043186","dl":{"02010007":9649,"07010002":-1.258}}],"ts":"2024-01-24 12:07:57"}}
|
||||
2024-01-24 12:11:59,874 [14] INFO loginfo - 循环:1
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-24 12:13:29,130 [3] INFO loginfo - 服务开始
|
||||
2024-01-24 12:13:29,249 [3] INFO loginfo - 开始
|
||||
2024-01-24 12:13:29,315 [3] INFO loginfo - 连接成功
|
||||
2024-01-24 12:13:29,315 [3] INFO loginfo - 连接失败
|
||||
2024-01-24 12:13:47,881 [6] INFO loginfo - 进入方法
|
||||
2024-01-24 12:13:47,881 [6] INFO loginfo - count0
|
||||
2024-01-24 12:13:51,163 [6] INFO loginfo - 水表msgJ{"b":{"dvl":[{"da":"R1.C1.370510043186","dl":{"02010007":9649,"07010002":-1.258}}],"ts":"2024-01-24 12:07:57"}}
|
||||
2024-01-24 12:13:51,336 [6] INFO loginfo - 水表:DataServer.api.get_dataJ{"b":{"dvl":[{"da":"R1.C1.370510043186","dl":{"02010007":9649,"07010002":-1.258}}],"ts":"2024-01-24 12:07:57"}}
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-24 14:55:52,708 [3] INFO loginfo - 服务开始
|
||||
2024-01-24 14:55:52,794 [3] INFO loginfo - 开始
|
||||
2024-01-24 14:55:52,844 [3] INFO loginfo - 连接成功
|
||||
2024-01-24 14:55:52,845 [3] INFO loginfo - 连接失败
|
||||
2024-01-24 14:59:24,242 [30] INFO loginfo - 进入方法
|
||||
2024-01-24 14:59:24,243 [30] INFO loginfo - count0
|
||||
2024-01-24 14:59:24,515 [30] INFO loginfo - 状态表msgJ{"b":{"dvl":[{"da":"qd.C1.KT21","dl":{"DI1":1,"DI2":0,"DI3":0,"DO1":0,"DO2":0}}],"ts":"2024-01-24 14:47:30"}}
|
||||
2024-01-24 14:59:24,714 [30] INFO loginfo - 状态:DataServer.api.get_data_state
|
||||
2024-01-24 15:00:27,381 [21] INFO loginfo - 进入方法
|
||||
2024-01-24 15:00:27,381 [21] INFO loginfo - count0
|
||||
2024-01-24 15:00:34,940 [21] INFO loginfo - 水表msgJ{"b":{"dvl":[{"da":"R1.C1.370510043186","dl":{"02010007":9649,"07010002":-1.258}}],"ts":"2024-01-24 12:07:57"}}
|
||||
2024-01-24 15:00:34,949 [21] INFO loginfo - 水表:DataServer.api.get_dataJ{"b":{"dvl":[{"da":"R1.C1.370510043186","dl":{"02010007":9649,"07010002":-1.258}}],"ts":"2024-01-24 12:07:57"}}
|
||||
2024-01-24 15:00:34,957 [21] INFO loginfo - 循环:1
|
||||
2024-01-24 15:00:45,455 [22] INFO loginfo - 进入方法
|
||||
2024-01-24 15:00:45,455 [22] INFO loginfo - count0
|
||||
2024-01-24 15:00:45,457 [22] INFO loginfo - 状态表msgJ{"b":{"dvl":[{"da":"qd.C1.KT21","dl":{"DI1":1,"DI2":0,"DI3":0,"DO1":0,"DO2":0}}],"ts":"2024-01-24 14:47:30"}}
|
||||
2024-01-24 15:00:45,457 [22] INFO loginfo - 状态:DataServer.api.get_data_state
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-24 15:27:50,263 [3] INFO loginfo - 服务开始
|
||||
2024-01-24 15:27:50,378 [3] INFO loginfo - 开始
|
||||
2024-01-24 15:27:50,478 [3] INFO loginfo - 连接成功
|
||||
2024-01-24 15:27:50,478 [3] INFO loginfo - 连接失败
|
||||
2024-01-24 15:28:10,885 [9] INFO loginfo - 进入方法
|
||||
2024-01-24 15:28:10,885 [9] INFO loginfo - count0
|
||||
2024-01-24 15:28:11,130 [9] INFO loginfo - 状态表msgJ{"b":{"dvl":[{"da":"qd.C1.KT21","dl":{"DI1":1,"DI2":0,"DI3":0,"DO1":0,"DO2":0}}],"ts":"2024-01-24 14:47:30"}}
|
||||
2024-01-24 15:28:11,295 [9] INFO loginfo - 状态:DataServer.api.get_data_state
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-24 15:40:27,195 [3] INFO loginfo - 服务开始
|
||||
2024-01-24 15:40:27,301 [3] INFO loginfo - 开始
|
||||
2024-01-24 15:40:27,360 [3] INFO loginfo - 连接成功
|
||||
2024-01-24 15:40:27,360 [3] INFO loginfo - 连接失败
|
||||
2024-01-24 15:40:47,485 [9] INFO loginfo - 进入方法
|
||||
2024-01-24 15:40:47,485 [9] INFO loginfo - count0
|
||||
2024-01-24 15:40:47,730 [9] INFO loginfo - 状态表msgJ{"b":{"dvl":[{"da":"qd.C1.KT21","dl":{"DI1":1,"DI2":0,"DI3":0,"DO1":0,"DO2":0}}],"ts":"2024-01-24 14:47:30"}}
|
||||
2024-01-24 15:40:47,898 [9] INFO loginfo - 状态:DataServer.api.get_data_state
|
||||
2024-01-24 15:41:06,566 [12] INFO loginfo - 进入方法
|
||||
2024-01-24 15:41:06,567 [12] INFO loginfo - count0
|
||||
2024-01-24 15:41:09,279 [12] INFO loginfo - 水表msgJ{"b":{"dvl":[{"da":"R1.C1.370510043186","dl":{"02010007":9649,"07010002":-1.258}}],"ts":"2024-01-24 12:07:57"}}
|
||||
2024-01-24 15:41:09,289 [12] INFO loginfo - 水表:DataServer.api.get_dataJ{"b":{"dvl":[{"da":"R1.C1.370510043186","dl":{"02010007":9649,"07010002":-1.258}}],"ts":"2024-01-24 12:07:57"}}
|
||||
2024-01-24 15:41:16,298 [9] INFO loginfo - 进入方法
|
||||
2024-01-24 15:41:16,298 [9] INFO loginfo - count0
|
||||
2024-01-24 15:41:16,300 [9] INFO loginfo - 状态表msgJ{"b":{"dvl":[{"da":"qd.C1.KT21","dl":{"DI1":1,"DI2":0,"DI3":0,"DO1":0,"DO2":0}}],"ts":"2024-01-24 14:47:30"}}
|
||||
2024-01-24 15:41:16,300 [9] INFO loginfo - 状态:DataServer.api.get_data_state
|
||||
2024-01-24 15:42:03,933 [18] INFO loginfo - 进入方法
|
||||
2024-01-24 15:42:03,933 [18] INFO loginfo - count0
|
||||
2024-01-24 15:42:07,760 [18] INFO loginfo - 状态表msgJ{"b":{"dvl":[{"da":"qd.C1.KT21","dl":{"DI1":1,"DI2":0,"DI3":0,"DO1":0,"DO2":0}}],"ts":"2024-01-24 14:47:30"}}
|
||||
2024-01-24 15:42:08,547 [18] INFO loginfo - 状态:DataServer.api.get_data_state
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-24 15:43:41,215 [3] INFO loginfo - 服务开始
|
||||
2024-01-24 15:43:41,331 [3] INFO loginfo - 开始
|
||||
2024-01-24 15:43:41,393 [3] INFO loginfo - 连接成功
|
||||
2024-01-24 15:43:41,393 [3] INFO loginfo - 连接失败
|
||||
2024-01-24 15:44:04,526 [12] INFO loginfo - 进入方法
|
||||
2024-01-24 15:44:04,526 [12] INFO loginfo - count0
|
||||
2024-01-24 15:44:09,620 [12] INFO loginfo - 状态表msgJ{"b":{"dvl":[{"da":"qd.C1.KT21","dl":{"DI1":1,"DI2":0,"DI3":0,"DO1":0,"DO2":0}}],"ts":"2024-01-24 14:47:30"}}
|
||||
2024-01-24 15:44:09,806 [12] INFO loginfo - 状态:DataServer.api.get_data_state
|
||||
2024-01-24 15:45:15,015 [19] INFO loginfo - 进入方法
|
||||
2024-01-24 15:45:15,015 [19] INFO loginfo - count0
|
||||
2024-01-24 15:45:20,552 [19] INFO loginfo - 状态表msgJ{"b":{"dvl":[{"da":"qd.C1.KT20","dl":{"DI1":1,"DI2":0,"DI3":0,"DO1":0,"DO2":0}}],"ts":"2024-01-24 14:47:30"}}
|
||||
2024-01-24 15:45:20,552 [19] INFO loginfo - 状态:DataServer.api.get_data_state
|
||||
2024-01-24 15:45:44,776 [25] INFO loginfo - 进入方法
|
||||
2024-01-24 15:45:44,776 [25] INFO loginfo - count0
|
||||
2024-01-24 15:45:47,291 [25] INFO loginfo - 水表msgJ{"b":{"dvl":[{"da":"R1.C1.370510043186","dl":{"02010007":9649,"07010002":-1.258}}],"ts":"2024-01-24 12:07:57"}}
|
||||
2024-01-24 15:45:47,301 [25] INFO loginfo - 水表:DataServer.api.get_dataJ{"b":{"dvl":[{"da":"R1.C1.370510043186","dl":{"02010007":9649,"07010002":-1.258}}],"ts":"2024-01-24 12:07:57"}}
|
||||
2024-01-24 15:45:58,597 [25] INFO loginfo - 进入方法
|
||||
2024-01-24 15:45:58,598 [25] INFO loginfo - count0
|
||||
2024-01-24 15:46:02,702 [25] INFO loginfo - 状态表msgJ{"b":{"dvl":[{"da":"qd.C1.KT20","dl":{"DI1":1,"DI2":0,"DI3":0,"DO1":0,"DO2":0}}],"ts":"2024-01-24 14:47:30"}}
|
||||
2024-01-24 15:46:02,704 [25] INFO loginfo - 状态:DataServer.api.get_data_state
|
|
@ -1,33 +0,0 @@
|
|||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-29 15:08:10,676 [3] INFO loginfo - 服务开始
|
||||
2024-01-29 15:08:10,799 [3] INFO loginfo - 开始
|
||||
2024-01-29 15:08:10,900 [3] INFO loginfo - 连接成功
|
||||
2024-01-29 15:08:10,900 [3] INFO loginfo - 连接失败
|
||||
2024-01-29 15:11:29,620 [29] INFO loginfo - 进入方法
|
||||
2024-01-29 15:11:29,621 [29] INFO loginfo - count0
|
||||
2024-01-29 15:11:36,929 [29] INFO loginfo - 电表msgJ{"b":{"dvl":[{"da":"R.C1.370510043048","dl":{"01010001":249.300,"01010002":247.700,"01010003":204.000,"01020001":0.000,"01020002":0.000,"01020003":0.000,"01030004":0.000,"01030012":0.000,"01030016":0.000,"01040005":0.290}}],"ts":"2024-01-29 15:10:31"}}
|
||||
2024-01-29 15:11:37,624 [29] INFO loginfo - 电表:DataServer.api.get_data
|
||||
2024-01-29 15:13:25,335 [16] INFO loginfo - 进入方法
|
||||
2024-01-29 15:13:25,335 [16] INFO loginfo - count0
|
||||
2024-01-29 15:13:29,343 [16] INFO loginfo - 电表msgJ{"b":{"dvl":[{"da":"R.C1.370510043048","dl":{"01010001":249.300,"01010002":247.700,"01010003":204.000,"01020001":0.000,"01020002":0.000,"01020003":0.000,"01030004":0.000,"01030012":0.000,"01030016":0.000,"01040005":0.290}}],"ts":"2024-01-29 15:10:31"}}
|
||||
2024-01-29 15:13:29,903 [16] INFO loginfo - 电表:DataServer.api.get_data
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-29 15:15:51,258 [3] INFO loginfo - 服务开始
|
||||
2024-01-29 15:15:51,462 [3] INFO loginfo - 开始
|
||||
2024-01-29 15:15:51,585 [3] INFO loginfo - 连接成功
|
||||
2024-01-29 15:15:51,585 [3] INFO loginfo - 连接失败
|
||||
2024-01-29 15:15:56,653 [8] INFO loginfo - 进入方法
|
||||
2024-01-29 15:15:56,653 [8] INFO loginfo - count0
|
||||
2024-01-29 15:16:06,529 [8] INFO loginfo - 电表msgJ{"b":{"dvl":[{"da":"R.C1.370510043048","dl":{"01010001":249.300,"01010002":247.700,"01010003":204.000,"01020001":0.000,"01020002":0.000,"01020003":0.000,"01030004":0.000,"01030012":0.000,"01030016":0.000,"01040005":0.290}}],"ts":"2024-01-29 15:10:31"}}
|
||||
2024-01-29 15:16:07,470 [8] INFO loginfo - 电表:DataServer.api.get_data
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-01-29 15:25:41,821 [3] INFO loginfo - 服务开始
|
||||
2024-01-29 15:25:41,991 [3] INFO loginfo - 开始
|
||||
2024-01-29 15:25:42,103 [3] INFO loginfo - 连接成功
|
||||
2024-01-29 15:25:42,103 [3] INFO loginfo - 连接失败
|
|
@ -1,28 +0,0 @@
|
|||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-02-21 13:58:08,712 [3] INFO loginfo - 服务开始
|
||||
2024-02-21 13:58:08,744 [3] INFO loginfo - 开始
|
||||
2024-02-21 13:58:08,794 [3] INFO loginfo - 连接成功
|
||||
2024-02-21 13:58:08,795 [3] INFO loginfo - 连接失败
|
||||
2024-02-21 14:00:05,035 [18] INFO loginfo - 进入方法
|
||||
2024-02-21 14:00:05,035 [18] INFO loginfo - count0
|
||||
2024-02-21 14:00:05,303 [18] INFO loginfo - 配电室低压msg
|
||||
2024-02-21 14:00:05,379 [18] INFO loginfo - 处理失败,数据:,原因:startIndex 不能大于字符串长度。
|
||||
参数名: startIndex
|
||||
2024-02-21 14:00:29,628 [19] INFO loginfo - 进入方法
|
||||
2024-02-21 14:00:31,030 [19] INFO loginfo - count0
|
||||
2024-02-21 14:00:36,392 [19] INFO loginfo - 配电室低压msg
|
||||
2024-02-21 14:00:44,452 [19] INFO loginfo - 处理失败,数据:,原因:startIndex 不能大于字符串长度。
|
||||
参数名: startIndex
|
||||
2024-02-21 14:01:40,617 [28] INFO loginfo - 进入方法
|
||||
2024-02-21 14:01:41,909 [28] INFO loginfo - count0
|
||||
2024-02-21 14:01:46,327 [28] INFO loginfo - 配电室低压msgJ{"b":{"dvl":[{"da":"R.C1.370510043139","dl":{"01010001":249.300,"01010002":247.700,"01010003":204.000,"01020001":0.000,"01020002":0.000,"01020003":0.000,"01030004":0.000,"01030012":0.000,"01030016":0.000,"01040005":0.290}}],"ts":"2024-01-29 15:10:31"}}
|
||||
2024-02-21 14:01:47,866 [28] INFO loginfo - 配电室低压:DataService.api.get_data
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-02-21 14:29:42,991 [3] INFO loginfo - 服务开始
|
||||
2024-02-21 14:29:43,015 [3] INFO loginfo - 开始
|
||||
2024-02-21 14:29:43,034 [3] INFO loginfo - 连接成功
|
||||
2024-02-21 14:29:43,034 [3] INFO loginfo - 连接失败
|
|
@ -1,85 +0,0 @@
|
|||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-02-22 13:15:07,932 [3] INFO loginfo - 服务开始
|
||||
2024-02-22 13:15:07,995 [3] INFO loginfo - 开始
|
||||
2024-02-22 13:15:08,073 [3] INFO loginfo - 连接成功
|
||||
2024-02-22 13:15:08,073 [3] INFO loginfo - 连接失败
|
||||
2024-02-22 13:15:25,986 [5] INFO loginfo - 进入方法
|
||||
2024-02-22 13:15:25,986 [5] INFO loginfo - count0
|
||||
2024-02-22 13:15:34,926 [5] INFO loginfo - 排污1msgJ{"b":{"dvl":[{"da":"R.C1.460","dl":{"1DI1":1,"1DI2":1,"1DI3":1,"1DI4":1,"1DI5":1,"1DI6":0,"1DI7":0,"1DI8":0,"1DI9":0,"1DI10":0}}],"ts":"2024-01-29 15:10:31"}}
|
||||
2024-02-22 13:16:09,763 [5] INFO loginfo - 排污1:DataService.api.get_data
|
||||
2024-02-22 13:17:23,967 [12] INFO loginfo - 网络异常,准备10秒后重新连接。
|
||||
2024-02-22 13:17:33,968 [12] INFO loginfo - 准备重新连接服务器...
|
||||
2024-02-22 13:17:33,970 [12] INFO loginfo - 连接服务器成功!
|
||||
2024-02-22 13:17:33,992 [14] INFO loginfo - 网络异常,准备10秒后重新连接。
|
||||
2024-02-22 13:17:43,993 [14] INFO loginfo - 准备重新连接服务器...
|
||||
2024-02-22 13:17:43,994 [14] INFO loginfo - 连接服务器成功!
|
||||
2024-02-22 13:17:44,006 [13] INFO loginfo - 网络异常,准备10秒后重新连接。
|
||||
2024-02-22 13:17:54,007 [13] INFO loginfo - 准备重新连接服务器...
|
||||
2024-02-22 13:17:54,019 [13] INFO loginfo - 连接服务器成功!
|
||||
2024-02-22 13:17:54,030 [26] INFO loginfo - 网络异常,准备10秒后重新连接。
|
||||
2024-02-22 13:18:04,032 [26] INFO loginfo - 准备重新连接服务器...
|
||||
2024-02-22 13:18:04,036 [26] INFO loginfo - 连接服务器成功!
|
||||
2024-02-22 13:18:04,045 [24] INFO loginfo - 网络异常,准备10秒后重新连接。
|
||||
2024-02-22 13:18:14,046 [24] INFO loginfo - 准备重新连接服务器...
|
||||
2024-02-22 13:18:14,050 [24] INFO loginfo - 连接服务器成功!
|
||||
2024-02-22 13:18:14,053 [23] INFO loginfo - 网络异常,准备10秒后重新连接。
|
||||
2024-02-22 13:18:24,054 [23] INFO loginfo - 准备重新连接服务器...
|
||||
2024-02-22 13:18:24,058 [23] INFO loginfo - 连接服务器成功!
|
||||
2024-02-22 13:18:24,060 [24] INFO loginfo - 网络异常,准备10秒后重新连接。
|
||||
2024-02-22 13:18:34,062 [24] INFO loginfo - 准备重新连接服务器...
|
||||
2024-02-22 13:18:34,066 [24] INFO loginfo - 连接服务器成功!
|
||||
2024-02-22 13:18:34,068 [25] INFO loginfo - 网络异常,准备10秒后重新连接。
|
||||
2024-02-22 13:18:44,068 [25] INFO loginfo - 准备重新连接服务器...
|
||||
2024-02-22 13:18:44,072 [25] INFO loginfo - 连接服务器成功!
|
||||
2024-02-22 13:18:44,075 [26] INFO loginfo - 网络异常,准备10秒后重新连接。
|
||||
2024-02-22 13:18:54,078 [26] INFO loginfo - 准备重新连接服务器...
|
||||
2024-02-22 13:18:54,082 [26] INFO loginfo - 连接服务器成功!
|
||||
2024-02-22 13:18:54,083 [22] INFO loginfo - 网络异常,准备10秒后重新连接。
|
||||
2024-02-22 13:19:04,085 [22] INFO loginfo - 准备重新连接服务器...
|
||||
2024-02-22 13:19:04,089 [22] INFO loginfo - 连接服务器成功!
|
||||
2024-02-22 13:19:04,096 [23] INFO loginfo - 网络异常,准备10秒后重新连接。
|
||||
2024-02-22 13:19:14,096 [23] INFO loginfo - 准备重新连接服务器...
|
||||
2024-02-22 13:19:14,100 [23] INFO loginfo - 连接服务器成功!
|
||||
2024-02-22 13:19:14,102 [26] INFO loginfo - 网络异常,准备10秒后重新连接。
|
||||
2024-02-22 13:19:24,103 [26] INFO loginfo - 准备重新连接服务器...
|
||||
2024-02-22 13:19:24,106 [26] INFO loginfo - 连接服务器成功!
|
||||
2024-02-22 13:19:24,108 [25] INFO loginfo - 网络异常,准备10秒后重新连接。
|
||||
2024-02-22 13:19:34,110 [25] INFO loginfo - 准备重新连接服务器...
|
||||
2024-02-22 13:19:34,114 [25] INFO loginfo - 连接服务器成功!
|
||||
2024-02-22 13:19:34,116 [26] INFO loginfo - 网络异常,准备10秒后重新连接。
|
||||
2024-02-22 13:19:44,117 [26] INFO loginfo - 准备重新连接服务器...
|
||||
2024-02-22 13:19:44,123 [26] INFO loginfo - 连接服务器成功!
|
||||
2024-02-22 13:19:44,132 [24] INFO loginfo - 网络异常,准备10秒后重新连接。
|
||||
2024-02-22 13:19:54,133 [24] INFO loginfo - 准备重新连接服务器...
|
||||
2024-02-22 13:19:54,136 [24] INFO loginfo - 连接服务器成功!
|
||||
2024-02-22 13:19:54,138 [18] INFO loginfo - 网络异常,准备10秒后重新连接。
|
||||
2024-02-22 13:20:04,157 [18] INFO loginfo - 准备重新连接服务器...
|
||||
2024-02-22 13:20:04,179 [18] INFO loginfo - 连接服务器成功!
|
||||
2024-02-22 13:20:55,726 [16] INFO loginfo - 进入方法
|
||||
2024-02-22 13:20:55,727 [16] INFO loginfo - count0
|
||||
2024-02-22 13:21:00,295 [16] INFO loginfo - 排污2msgJ{"b":{"dvl":[{"da":"R.C1.465","dl":{"1DI1":1,"1DI2":1,"1DI3":1,"1DI4":1,"1DI5":1,"1DI6":0,"1DI7":0,"1DI8":0,"1DI9":0,"1DI10":0}}],"ts":"2024-01-29 15:10:31"}}
|
||||
2024-02-22 13:21:04,227 [16] INFO loginfo - 排污2:DataService.api.get_data
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-02-22 13:22:08,592 [3] INFO loginfo - 服务开始
|
||||
2024-02-22 13:22:08,622 [3] INFO loginfo - 开始
|
||||
2024-02-22 13:22:08,650 [3] INFO loginfo - 连接成功
|
||||
2024-02-22 13:22:08,650 [3] INFO loginfo - 连接失败
|
||||
2024-02-22 13:22:17,219 [6] INFO loginfo - 进入方法
|
||||
2024-02-22 13:22:17,219 [6] INFO loginfo - count0
|
||||
2024-02-22 13:22:17,387 [6] INFO loginfo - 排污2msgJ{"b":{"dvl":[{"da":"R.C1.465","dl":{"1DI1":1,"1DI2":1,"1DI3":1,"1DI4":1,"1DI5":1,"1DI6":0,"1DI7":0,"1DI8":0,"1DI9":0,"1DI10":0}}],"ts":"2024-01-29 15:10:31"}}
|
||||
2024-02-22 13:22:17,434 [6] INFO loginfo - 排污2:DataService.api.get_data
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-02-22 14:07:14,034 [3] INFO loginfo - 服务开始
|
||||
2024-02-22 14:07:14,084 [3] INFO loginfo - 开始
|
||||
2024-02-22 14:07:14,170 [3] INFO loginfo - 连接成功
|
||||
2024-02-22 14:07:14,171 [3] INFO loginfo - 连接失败
|
||||
2024-02-22 14:07:39,306 [6] INFO loginfo - 进入方法
|
||||
2024-02-22 14:07:39,306 [6] INFO loginfo - count0
|
||||
2024-02-22 14:07:43,239 [6] INFO loginfo - 气象站msgJ{"b":{"dvl":[{"da":"R.C2.370510043185","dl":{"10分钟平均大气能见度":0.000,"CO2浓度":418.000,"CO浓度":0.000,"H2S浓度":0.000,"NH3浓度1":0.000,"NO2浓度":0.000,"O2浓度":0.000,"O3浓度":0.000,"PM10":8.000,"PM2_5":6.000,"SO2浓度":0.000,"TVOC浓度":0.000,"光合有效辐射":0.000,"光学雨量":0.000,"光照度低16位":-19896.000,"光照度高16位":0.000,"噪声":30.000,"土壤1EC":0.000,"土壤1PH值":0.000,"土壤1温度":0.000,"土壤1湿度":0.000,"土壤2EC":0.000,"土壤2PH值":0.000,"土壤2温度":0.000,"土壤2湿度":0.000,"土壤3EC":0.000,"土壤3PH值":-14.900,"土壤3温度":0.000,"土壤3湿度":0.000,"土壤4EC":57.000,"土壤4温度":0.000,"土壤4湿度":0.000,"大气压力":103.500,"实时大气能见度":0.000,"当前雨量":0.000,"总辐射":112.000,"日雨量":0.000,"氮含量暂存值":0.000,"瞬时雨量":0.000,"磷含量暂存值":0.000,"空气温度":-2.400,"空气湿度":31.800,"紫外线指数":3.000,"累计雨量低16位":29.200,"累计雨量高16位":0.000,"蒸发量":0.000,"负氧离子1":0.000,"负氧离子2":0.000,"钾含量暂存值":0.000,"雨雪状态1":0.000,"风力":0.000,"风向":3.000,"风向度数":135.000,"风速":0.000}}],"ts":"2024-01-23 14:49:57"}}
|
||||
2024-02-22 14:07:45,019 [6] INFO loginfo - 气象站:DataService.api.get_data_state
|
|
@ -1,78 +0,0 @@
|
|||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-03-20 14:34:08,223 [3] INFO loginfo - 服务开始
|
||||
2024-03-20 14:34:08,252 [3] INFO loginfo - 开始
|
||||
2024-03-20 14:34:08,293 [3] INFO loginfo - 连接成功
|
||||
2024-03-20 14:34:08,293 [3] INFO loginfo - 连接失败
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-03-20 14:44:23,824 [3] INFO loginfo - 服务开始
|
||||
2024-03-20 14:44:23,871 [3] INFO loginfo - 开始
|
||||
2024-03-20 14:44:23,928 [3] INFO loginfo - 连接成功
|
||||
2024-03-20 14:44:23,928 [3] INFO loginfo - 连接失败
|
||||
2024-03-20 14:45:07,764 [7] INFO loginfo - 进入方法
|
||||
2024-03-20 14:45:07,764 [7] INFO loginfo - count0
|
||||
2024-03-20 14:45:08,029 [7] INFO loginfo - 配电室低压msgJ{"b":{"dvl":[{"da":"R.C1.370510043139","dl":{"01010001":249.300,"01010002":247.700,"01010003":204.000,"01020001":0.000,"01020002":0.000,"01020003":0.000,"01030004":0.000,"01030012":0.000,"01030016":0.000,"01040005":0.290}}],"ts":"2024-01-29 15:10:31"}}
|
||||
2024-03-20 14:45:08,168 [7] INFO loginfo - 配电室低压:DataService.api.get_data
|
||||
2024-03-20 14:45:27,663 [7] INFO loginfo - 处理失败,数据:J{"b":{"dvl":[{"da":"R.C1.370510043139","dl":{"01010001":249.300,"01010002":247.700,"01010003":204.000,"01020001":0.000,"01020002":0.000,"01020003":0.000,"01030004":0.000,"01030012":0.000,"01030016":0.000,"01040005":0.290}}],"ts":"2024-01-29 15:10:31"}},原因:未将对象引用设置到对象的实例。
|
||||
2024-03-20 14:45:27,672 [7] INFO loginfo - 进入方法
|
||||
2024-03-20 14:45:27,672 [7] INFO loginfo - count0
|
||||
2024-03-20 14:45:27,674 [7] INFO loginfo - 配电室低压msgJ{"b":{"dvl":[{"da":"R.C1.370510043139","dl":{"01010001":249.300,"01010002":247.700,"01010003":204.000,"01020001":0.000,"01020002":0.000,"01020003":0.000,"01030004":0.000,"01030012":0.000,"01030016":0.000,"01040005":0.290}}],"ts":"2024-01-29 15:10:31"}}
|
||||
2024-03-20 14:45:27,674 [7] INFO loginfo - 配电室低压:DataService.api.get_data
|
||||
2024-03-20 14:45:27,991 [7] INFO loginfo - 处理失败,数据:J{"b":{"dvl":[{"da":"R.C1.370510043139","dl":{"01010001":249.300,"01010002":247.700,"01010003":204.000,"01020001":0.000,"01020002":0.000,"01020003":0.000,"01030004":0.000,"01030012":0.000,"01030016":0.000,"01040005":0.290}}],"ts":"2024-01-29 15:10:31"}},原因:未将对象引用设置到对象的实例。
|
||||
2024-03-20 14:45:32,407 [22] INFO loginfo - 进入方法
|
||||
2024-03-20 14:45:32,407 [22] INFO loginfo - count0
|
||||
2024-03-20 14:45:32,408 [22] INFO loginfo - 配电室低压msgJ{"b":{"dvl":[{"da":"R.C1.370510043139","dl":{"01010001":249.300,"01010002":247.700,"01010003":204.000,"01020001":0.000,"01020002":0.000,"01020003":0.000,"01030004":0.000,"01030012":0.000,"01030016":0.000,"01040005":0.290}}],"ts":"2024-01-29 15:10:31"}}
|
||||
2024-03-20 14:45:32,408 [22] INFO loginfo - 配电室低压:DataService.api.get_data
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-03-20 14:48:37,622 [3] INFO loginfo - 服务开始
|
||||
2024-03-20 14:48:37,653 [3] INFO loginfo - 开始
|
||||
2024-03-20 14:48:37,676 [3] INFO loginfo - 连接成功
|
||||
2024-03-20 14:48:37,676 [3] INFO loginfo - 连接失败
|
||||
2024-03-20 14:48:46,138 [5] INFO loginfo - 进入方法
|
||||
2024-03-20 14:48:46,139 [5] INFO loginfo - count0
|
||||
2024-03-20 14:48:46,366 [5] INFO loginfo - 配电室低压msgJ{"b":{"dvl":[{"da":"R.C1.370510043139","dl":{"01010001":249.300,"01010002":247.700,"01010003":204.000,"01020001":0.000,"01020002":0.000,"01020003":0.000,"01030004":0.000,"01030012":0.000,"01030016":0.000,"01040005":0.290}}],"ts":"2024-01-29 15:10:31"}}
|
||||
2024-03-20 14:48:46,513 [5] INFO loginfo - 配电室低压:DataService.api.get_data
|
||||
2024-03-20 14:49:06,738 [5] INFO loginfo - 处理失败,数据:J{"b":{"dvl":[{"da":"R.C1.370510043139","dl":{"01010001":249.300,"01010002":247.700,"01010003":204.000,"01020001":0.000,"01020002":0.000,"01020003":0.000,"01030004":0.000,"01030012":0.000,"01030016":0.000,"01040005":0.290}}],"ts":"2024-01-29 15:10:31"}},原因:未将对象引用设置到对象的实例。
|
||||
2024-03-20 14:49:10,417 [17] INFO loginfo - 进入方法
|
||||
2024-03-20 14:49:10,417 [17] INFO loginfo - count0
|
||||
2024-03-20 14:49:10,418 [17] INFO loginfo - 配电室低压msgJ{"b":{"dvl":[{"da":"R.C1.370510043139","dl":{"01010001":249.300,"01010002":247.700,"01010003":204.000,"01020001":0.000,"01020002":0.000,"01020003":0.000,"01030004":0.000,"01030012":0.000,"01030016":0.000,"01040005":0.290}}],"ts":"2024-01-29 15:10:31"}}
|
||||
2024-03-20 14:49:10,418 [17] INFO loginfo - 配电室低压:DataService.api.get_data
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-03-20 14:50:02,648 [3] INFO loginfo - 服务开始
|
||||
2024-03-20 14:50:02,677 [3] INFO loginfo - 开始
|
||||
2024-03-20 14:50:02,700 [3] INFO loginfo - 连接成功
|
||||
2024-03-20 14:50:02,701 [3] INFO loginfo - 连接失败
|
||||
2024-03-20 14:50:05,292 [11] INFO loginfo - 进入方法
|
||||
2024-03-20 14:50:05,293 [11] INFO loginfo - count0
|
||||
2024-03-20 14:50:05,535 [11] INFO loginfo - 配电室低压msgJ{"b":{"dvl":[{"da":"R.C1.370510043139","dl":{"01010001":249.300,"01010002":247.700,"01010003":204.000,"01020001":0.000,"01020002":0.000,"01020003":0.000,"01030004":0.000,"01030012":0.000,"01030016":0.000,"01040005":0.290}}],"ts":"2024-01-29 15:10:31"}}
|
||||
2024-03-20 14:50:05,733 [11] INFO loginfo - 配电室低压:DataService.api.get_data
|
||||
2024-03-20 14:50:08,693 [11] INFO loginfo - 处理失败,数据:J{"b":{"dvl":[{"da":"R.C1.370510043139","dl":{"01010001":249.300,"01010002":247.700,"01010003":204.000,"01020001":0.000,"01020002":0.000,"01020003":0.000,"01030004":0.000,"01030012":0.000,"01030016":0.000,"01040005":0.290}}],"ts":"2024-01-29 15:10:31"}},原因:未将对象引用设置到对象的实例。
|
||||
2024-03-20 14:50:14,736 [8] INFO loginfo - 进入方法
|
||||
2024-03-20 14:50:14,736 [8] INFO loginfo - count0
|
||||
2024-03-20 14:50:14,738 [8] INFO loginfo - 配电室低压msgJ{"b":{"dvl":[{"da":"R.C1.370510043139","dl":{"01010001":249.300,"01010002":247.700,"01010003":204.000,"01020001":0.000,"01020002":0.000,"01020003":0.000,"01030004":0.000,"01030012":0.000,"01030016":0.000,"01040005":0.290}}],"ts":"2024-01-29 15:10:31"}}
|
||||
2024-03-20 14:50:14,738 [8] INFO loginfo - 配电室低压:DataService.api.get_data
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-03-20 14:51:52,283 [3] INFO loginfo - 服务开始
|
||||
2024-03-20 14:51:52,305 [3] INFO loginfo - 开始
|
||||
2024-03-20 14:51:52,322 [3] INFO loginfo - 连接成功
|
||||
2024-03-20 14:51:52,322 [3] INFO loginfo - 连接失败
|
||||
2024-03-20 14:51:57,076 [8] INFO loginfo - 进入方法
|
||||
2024-03-20 14:51:57,076 [8] INFO loginfo - count0
|
||||
2024-03-20 14:51:57,237 [8] INFO loginfo - 配电室低压msgJ{"b":{"dvl":[{"da":"R.C1.370510043139","dl":{"01010001":249.300,"01010002":247.700,"01010003":204.000,"01020001":0.000,"01020002":0.000,"01020003":0.000,"01030004":0.000,"01030012":0.000,"01030016":0.000,"01040005":0.290}}],"ts":"2024-01-29 15:10:31"}}
|
||||
2024-03-20 14:51:57,375 [8] INFO loginfo - 配电室低压:DataService.api.get_data
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
------------------------------------------------
|
||||
2024-03-20 14:54:47,018 [3] INFO loginfo - 服务开始
|
||||
2024-03-20 14:54:47,046 [3] INFO loginfo - 开始
|
||||
2024-03-20 14:54:47,071 [3] INFO loginfo - 连接成功
|
||||
2024-03-20 14:54:47,071 [3] INFO loginfo - 连接失败
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
|
@ -14,7 +14,7 @@
|
|||
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||
</dsig:Transforms>
|
||||
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
|
||||
<dsig:DigestValue>vN1d9Z438ix2PIV0Z6Ot7Mok/tmSTm4rF6TNgjBw/QA=</dsig:DigestValue>
|
||||
<dsig:DigestValue>zWiyGjDmxLNE5Cmqyjg+lrZoGbCru9yYvYmS3TryJnA=</dsig:DigestValue>
|
||||
</hash>
|
||||
</dependentAssembly>
|
||||
</dependency>
|
||||
|
|
Binary file not shown.
|
@ -34,7 +34,7 @@
|
|||
</appender>
|
||||
</log4net>
|
||||
<appSettings>
|
||||
<add key="ConnectionString" value="Data Source=127.0.0.1;Database=changdao_zhanlanguang;User ID=root;Password=0822;Charset=gbk;convert zero datetime=True"/>
|
||||
<add key="ConnectionString" value="Data Source=127.0.0.1;Database=changdao_zhanlanguang;User ID=root;Password=Unity3du#d112233;Charset=gbk;convert zero datetime=True"/>
|
||||
<!--是否测试-->
|
||||
<add key="is_debug" value="1"/>
|
||||
</appSettings>
|
||||
|
|
|
@ -42,14 +42,14 @@
|
|||
</dependentAssembly>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="DataService.dll" size="125440">
|
||||
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="DataService.dll" size="126464">
|
||||
<assemblyIdentity name="DataService" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
|
||||
<hash>
|
||||
<dsig:Transforms>
|
||||
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||
</dsig:Transforms>
|
||||
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
|
||||
<dsig:DigestValue>uckRvU/W+ECPkyzCBeU8Ca4l/bzYMuyj1e+6/M8lqPg=</dsig:DigestValue>
|
||||
<dsig:DigestValue>BNrWQa+xXYUE0+WI/IM+mx8lKb78o0/UqGjOMy5ePCc=</dsig:DigestValue>
|
||||
</hash>
|
||||
</dependentAssembly>
|
||||
</dependency>
|
||||
|
@ -138,24 +138,24 @@
|
|||
</dependentAssembly>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="ServiceSecurity.exe" size="42976">
|
||||
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="ServiceSecurity.exe" size="60384">
|
||||
<assemblyIdentity name="ServiceSecurity" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
|
||||
<hash>
|
||||
<dsig:Transforms>
|
||||
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||
</dsig:Transforms>
|
||||
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
|
||||
<dsig:DigestValue>/hiQ0uIwo0ndBBAzegW5Kuppjf03K0PXCDIw+PyfuC8=</dsig:DigestValue>
|
||||
<dsig:DigestValue>+mUxixAuYLF2AerPbZrwk2YvZ855/Icd3/Wa/1EKKT0=</dsig:DigestValue>
|
||||
</hash>
|
||||
</dependentAssembly>
|
||||
</dependency>
|
||||
<file name="ServiceSecurity.exe.config" size="1675">
|
||||
<file name="ServiceSecurity.exe.config" size="1687">
|
||||
<hash>
|
||||
<dsig:Transforms>
|
||||
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||
</dsig:Transforms>
|
||||
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
|
||||
<dsig:DigestValue>SluUgFNwI/CXCIgGbzaDTRyPjGMcJLkugK8IIKkE2Pc=</dsig:DigestValue>
|
||||
<dsig:DigestValue>WytsLRqG6ApaZHwgwlsiEh3SPPNpPD3ySv0erPQhGBg=</dsig:DigestValue>
|
||||
</hash>
|
||||
</file>
|
||||
</asmv1:assembly>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1 +1 @@
|
|||
dea0e84a0e164a244164049ec3ddfbfae59a567d
|
||||
861e78bdb92a2ba9c8cb73fb388e5c3725ba919e
|
||||
|
|
|
@ -106,3 +106,30 @@ E:\林谷项目\长岛展览馆项目\后端\LonglslandExhibitionCenter\Security
|
|||
E:\林谷项目\长岛展览馆项目\后端\LonglslandExhibitionCenter\Security\obj\Debug\ServiceSecurity.pdb
|
||||
E:\林谷项目\长岛展览馆项目\后端\LonglslandExhibitionCenter\Security\bin\Debug\DataService.dll
|
||||
E:\林谷项目\长岛展览馆项目\后端\LonglslandExhibitionCenter\Security\bin\Debug\DataService.pdb
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\ServiceSecurity.exe.config
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\ServiceSecurity.exe.manifest
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\ServiceSecurity.application
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\ServiceSecurity.exe
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\ServiceSecurity.pdb
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\DataService.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\HslCommunication.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\LitJSON.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\log4net.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\Newtonsoft.Json.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\MySql.Data.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\Maticsoft.DBUtility.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\Maticsoft.Common.dll
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\DataService.pdb
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\HslCommunication.xml
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\log4net.xml
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\Newtonsoft.Json.xml
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\obj\Debug\Security.csproj.AssemblyReference.cache
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\obj\Debug\Security.csproj.SuggestedBindingRedirects.cache
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\obj\Debug\Security.ProjectInstaller.resources
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\obj\Debug\Security.csproj.GenerateResource.cache
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\obj\Debug\Security.csproj.CoreCompileInputs.cache
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\obj\Debug\ServiceSecurity.exe.manifest
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\obj\Debug\ServiceSecurity.application
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\obj\Debug\Security.csproj.CopyComplete
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\obj\Debug\ServiceSecurity.exe
|
||||
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\obj\Debug\ServiceSecurity.pdb
|
||||
|
|
Binary file not shown.
|
@ -14,7 +14,7 @@
|
|||
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||
</dsig:Transforms>
|
||||
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
|
||||
<dsig:DigestValue>vN1d9Z438ix2PIV0Z6Ot7Mok/tmSTm4rF6TNgjBw/QA=</dsig:DigestValue>
|
||||
<dsig:DigestValue>zWiyGjDmxLNE5Cmqyjg+lrZoGbCru9yYvYmS3TryJnA=</dsig:DigestValue>
|
||||
</hash>
|
||||
</dependentAssembly>
|
||||
</dependency>
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue