1、光照度修改

2、所有计算电量相关接口改成取配电室低压总和
3、总览里的实时负荷从累计今日负荷改成取上一小时的负荷
4、能耗计算公式需要修改
This commit is contained in:
曾艳 2024-08-15 13:51:06 +08:00
parent afc628189c
commit 6e1786b01c
59 changed files with 596 additions and 354 deletions

View File

@ -161,6 +161,15 @@
<binding protocol="http" bindingInformation="*:15586:localhost" />
<binding protocol="https" bindingInformation="*:44396:localhost" />
</bindings>
</site>
<site name="LonglslandExhibitionCenter(1)" id="3">
<application path="/" applicationPool="Clr4IntegratedAppPool">
<virtualDirectory path="/" physicalPath="F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter" />
</application>
<bindings>
<binding protocol="http" bindingInformation="*:44396:localhost" />
<binding protocol="https" bindingInformation="*:44396:localhost" />
</bindings>
</site>
<siteDefaults>
<!-- To enable logging, please change the below attribute "enabled" to "true" -->

View File

@ -37,7 +37,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
var data=new List<airconditioning_loadData>();
var list = bll.GetModelListDate(" Reserve2 like '%空调%'", time);
var time_count = Convert.ToInt32(DateTime.Now.Hour);
for (int i = 1; i < time_count; i++)
for (int i = 1; i <= time_count; i++)
{
var date = DateTime.Now.AddHours(-i).ToString("yyyy-MM-dd HH:00:00");
var alist = list.Where(x => x.EntireTime == Convert.ToDateTime(date)).ToList();

View File

@ -50,17 +50,17 @@ namespace LonglslandExhibitionCenter.Controllers.api
}
else
{
sdate = now.AddMonths(-i+1).ToString("yyyy-MM-01 00:00:00");
sdate = now.AddMonths(-i + 1).ToString("yyyy-MM-01 00:00:00");
}
var edate = now.AddMonths(-i).ToString("yyyy-MM-01 00:00:00");
var slist = bll.GetModelListDate(" EntireTime='" + sdate + "' and Reserve1='配电室压'", stime);
var elist = bll.GetModelListDate(" EntireTime='" + edate + "' and Reserve1='配电室压'", 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_emissionData()
{
time = DateTime.Now.AddMonths(-i).ToString("MM月"),
CarbonEmission =Convert.ToDecimal( Math.Round(Convert.ToDouble(num1 - num2)/1000* 0.5703,3))
CarbonEmission = Convert.ToDecimal(Math.Round(Convert.ToDouble(num1 - num2) / 1000 * 0.5703, 3))
};
if (model.CarbonEmission < 0)
{
@ -93,11 +93,11 @@ 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 slist = bll.GetModelListDate(" EntireTime='" + sdate + "' and Reserve1='配电室压'", stime);
var elist = bll.GetModelListDate(" EntireTime='" + edate + "' and Reserve1='配电室压'", 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_emissionData()
@ -112,7 +112,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
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;
@ -127,7 +127,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
{
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;

View File

@ -35,7 +35,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
try
{
var data = new List<carbon_fluxData>();
var list = bll.GetModelListDate(" Reserve1!='配电室高压' and Reserve1!='电能-室外箱变'", time);
var list = bll.GetModelListDate(" Reserve1='配电室低压' ", time);
var sdate = Convert.ToDateTime(DateTime.Now.AddHours(-1).ToString("yyyy-MM-dd HH:00:00"));
var edate = Convert.ToDateTime(DateTime.Now.ToString("yyyy-MM-dd 00:00:00"));
#region

View File

@ -34,7 +34,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
try
{
var data = new List<carbon_intensityData>();
var list = bll.GetModelListDate(" Reserve1='配电室高压'", time);
var list = bll.GetModelListDate(" Reserve1='配电室低压' ", time);
var now = DateTime.Now;
var time_count = Convert.ToInt32(DateTime.Now.Month);
for (int i = 0; i < time_count; i++)

View File

@ -44,8 +44,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
{
bll.CreateTable(etime);
}
var slist = bll.GetModelListDate(" EntireTime='" + sdate + "' and Reserve1='配电室压'", stime);
var elist = bll.GetModelListDate(" EntireTime='" + edate + "' and Reserve1='配电室压'", 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()
@ -77,8 +77,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
{
bll.CreateTable(etime);
}
var slist = bll.GetModelListDate(" EntireTime='" + sdate + "' and Reserve1='配电室压'", stime);
var elist = bll.GetModelListDate(" EntireTime='" + edate + "' and Reserve1='配电室压'", 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()

View File

@ -18,7 +18,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
{
DataService.BLL.electricity_data bll = new DataService.BLL.electricity_data();
// GET api/<controller>
public HttpResponseMessage Get(string date="")
public HttpResponseMessage Get(string date = "")
{
var res = new get_carbon_trend();
#region
@ -34,9 +34,9 @@ namespace LonglslandExhibitionCenter.Controllers.api
try
{
var data = new List<carbon_trendData>();
var list = bll.GetModelListDate(" Reserve1='配电室压'", time);
var now=DateTime.Now;
if(!string.IsNullOrEmpty(date))
var list = bll.GetModelListDate(" Reserve1='配电室压'", time);
var now = DateTime.Now;
if (!string.IsNullOrEmpty(date))
{
if (date == "日")
{
@ -50,7 +50,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");
var alist = list.Where(x => x.EntireTime == Convert.ToDateTime(sdate)).ToList();
@ -79,7 +79,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
}
else
{
sdate = now.AddMonths(-i+1).ToString("yyyy-MM-01 00:00:00");
sdate = now.AddMonths(-i + 1).ToString("yyyy-MM-01 00:00:00");
//sdate = Convert.ToDateTime(sdate1).AddDays(-1).ToString("yyyy-MM-dd 00:00:00");
}
var edate = now.AddMonths(-i).ToString("yyyy-MM-01 00:00:00");
@ -91,12 +91,12 @@ namespace LonglslandExhibitionCenter.Controllers.api
}
string stime = Convert.ToDateTime(sdate).ToString("yyyyMM");
var c = bll.IsExistsTable(date_base, "electricity_data_" + stime);
if(c == false)
if (c == false)
{
bll.CreateTable(stime);
}
var alist = bll.GetModelListDate(" EntireTime='"+sdate+ "' and Reserve1='配电室高压'", stime);
var blist=bll.GetModelListDate(" EntireTime='" + edate + "' and Reserve1='配电室压'", etime);
var alist = bll.GetModelListDate(" EntireTime='" + sdate + "' and Reserve1='配电室低压'", stime);
var blist = bll.GetModelListDate(" EntireTime='" + edate + "' and Reserve1='配电室压'", etime);
var model = new carbon_trendData()
{
time = DateTime.Now.AddMonths(-i).ToString("MM月"),
@ -112,10 +112,10 @@ namespace LonglslandExhibitionCenter.Controllers.api
}
else
{
res.code= 201;
res.code = 201;
res.msg = "参数不能为空";
}
var adata=data.OrderBy(x=>x.time).ToList();
var adata = data.OrderBy(x => x.time).ToList();
res.code = 200;
res.msg = "成功";
res.data = adata;

View File

@ -26,7 +26,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
var date_base = ConfigurationManager.AppSettings["MySQLDataBase"].ToString();
try
{
var data=new List<daily_electricityData>();
var data = new List<daily_electricityData>();
var now = DateTime.Now;
var time_count = Convert.ToInt32(DateTime.Now.Hour);
var time = DateTime.Now.ToString("yyyyMM");
@ -35,19 +35,19 @@ namespace LonglslandExhibitionCenter.Controllers.api
{
bll.CreateTable(time);
}
var list = bll.GetModelListDate(" Reserve1='配电室压'", time);
for (int i = 0; i < time_count; i++)
var list = bll.GetModelListDate(" Reserve1='配电室压'", time);
for (int i = 1; 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 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 + 1)).ToString("HH:00"),
EH =Convert.ToDecimal(Math.Round(Convert.ToDouble(num1 - num2),3))
time = now.AddHours(-i).ToString("HH:00"),
EH = Convert.ToDecimal(Math.Round(Convert.ToDouble(num2 - num1), 3))
};
if (model.EH < 0)
{
@ -55,7 +55,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
}
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;

View File

@ -36,7 +36,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
var data = new List<airconditioning_loadData>();
var list = bll.GetModelListDate(" Reserve2 like '%展陈%'", time);
var time_count = Convert.ToInt32(DateTime.Now.Hour);
for (int i = 1; i < time_count; i++)
for (int i = 1; i <= time_count; i++)
{
var date = DateTime.Now.AddHours(-i).ToString("yyyy-MM-dd HH:00:00");
var alist = list.Where(x => x.EntireTime == Convert.ToDateTime(date)).ToList();

View File

@ -18,13 +18,13 @@ namespace LonglslandExhibitionCenter.Controllers.api
{
DataService.BLL.electricity_data bll = new DataService.BLL.electricity_data();
// GET api/<controller
public HttpResponseMessage Get( string date="")
public HttpResponseMessage Get(string date = "")
{
var res = new get_electricity_consumption();
try
{
var data = new List<electricity_consumptionData>();
var now=DateTime.Now;
var now = DateTime.Now;
if (!string.IsNullOrEmpty(date))
{
if (date == "月")
@ -35,12 +35,11 @@ namespace LonglslandExhibitionCenter.Controllers.api
string sdate;
if (i == 0)
{
sdate = now.AddHours(-1).ToString("yyyy-MM-dd HH:00:00");
sdate = now.AddHours(-1).ToString("yyyy-MM-dd HH:00:00");
}
else
{
sdate = now.AddMonths(-i+1).ToString("yyyy-MM-01 00:00:00");
//sdate = stime1.AddMonths(1).AddDays(-1).ToString("yyyy-MM-dd 00:00:00");
sdate = now.AddMonths(-i + 1).ToString("yyyy-MM-01 00:00:00");
}
var edate = now.AddMonths(-i).ToString("yyyy-MM-01 00:00:00");
var stime = Convert.ToDateTime(sdate).ToString("yyyyMM");
@ -55,10 +54,10 @@ namespace LonglslandExhibitionCenter.Controllers.api
{
bll.CreateTable(etime);
}
var slist = bll.GetModelListDate(" EntireTime='"+sdate+ "' and Reserve1='配电室高压'", stime);
var elist = bll.GetModelListDate(" EntireTime='"+edate+ "' and Reserve1='配电室高压'", 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);
decimal? num2 = elist.Sum(x => x.EH);
var model = new electricity_consumptionData()
{
time = DateTime.Now.AddMonths(-i).ToString("MM月"),
@ -71,7 +70,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
data.Add(model);
}
}
if(date == "年")
if (date == "年")
{
var time_count = Convert.ToInt32(DateTime.Now.Year) - 2023;
for (int i = 0; i < time_count; i++)
@ -98,14 +97,14 @@ namespace LonglslandExhibitionCenter.Controllers.api
{
bll.CreateTable(etime);
}
var slist = bll.GetModelListDate(" EntireTime='" + sdate + "' and Reserve1='配电室压'", stime);
var elist = bll.GetModelListDate(" EntireTime='" + edate + "' and Reserve1='配电室压'", 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 electricity_consumptionData()
{
time = DateTime.Now.AddYears(-i).ToString("yyyy年"),
EH = Convert.ToDecimal(Math.Round(Convert.ToDouble(num1 - num2),3))
EH = Convert.ToDecimal(Math.Round(Convert.ToDouble(num1 - num2), 3))
};
if (model.EH < 0)
{
@ -114,7 +113,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
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;
@ -128,7 +127,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;

View File

@ -46,12 +46,12 @@ namespace LonglslandExhibitionCenter.Controllers.api
bll.CreateTable(btime);
}
var list = new List<DataService.Model.electricity_data>();
var list1 = bll.GetModelListDate(" Reserve1='配电室压'", atime);
var list1 = bll.GetModelListDate(" Reserve1='配电室压'", atime);
if (list1.Count() > 0)
{
list.AddRange(list1);
}
var list2 = bll.GetModelListDate(" Reserve1='配电室压'", btime);
var list2 = bll.GetModelListDate(" Reserve1='配电室压'", btime);
if (list2.Count() > 0)
{
list.AddRange(list2);
@ -78,7 +78,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
var model = new electricity_consumptionData()
{
time = stime.AddDays(-i).ToString("dd"),
EH = Convert.ToDecimal(Math.Round(Convert.ToDouble((anum - bnum) * Convert.ToDecimal(1.229)), 3))
EH = Convert.ToDecimal(Math.Round(Convert.ToDouble((anum - bnum) / 10000 * Convert.ToDecimal(1.229)), 3))
};
data.Add(model);
}

View File

@ -60,13 +60,13 @@ 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);
var alist = bll.GetModelListDate(" Reserve1='配电室低压' and EntireTime='" + ssdate + "'", stime);
var blist = bll.GetModelListDate(" Reserve1='配电室低压' and EntireTime='" + eedate + "'", etime);
num += Convert.ToDecimal(alist.Sum(x => x.EH) - blist.Sum(x => x.EH));
}
var model = new energy_flowData()
{
Amont = Convert.ToDecimal(Math.Round(Convert.ToDouble(num) * 1.229, 3))
Amont = Convert.ToDecimal(Math.Round(Convert.ToDouble(num) / 10000 * 1.229, 3))
};
#endregion
#region
@ -95,13 +95,13 @@ namespace LonglslandExhibitionCenter.Controllers.api
{
bll.CreateTable(etime);
}
var alist = bll.GetModelListDate(" Reserve2 like '%空调%' and EntireTime='" + ssdate + "'", stime);
var blist = bll.GetModelListDate(" Reserve2 like '%空调%' and EntireTime='" + eedate + "'", etime);
var alist = bll.GetModelListDate(" Reserve1='配电室低压' and Reserve2 like '%空调%' and EntireTime='" + ssdate + "'", stime);
var blist = bll.GetModelListDate(" Reserve1='配电室低压' and Reserve2 like '%空调%' and EntireTime='" + eedate + "'", etime);
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) / 10000 * 1.229, 3));
#endregion
#region
decimal? znum = 0;
@ -129,11 +129,11 @@ namespace LonglslandExhibitionCenter.Controllers.api
{
bll.CreateTable(etime);
}
var alist = bll.GetModelListDate(" Reserve2 like '%照明%' and EntireTime='" + ssdate + "'", stime);
var blist = bll.GetModelListDate(" Reserve2 like '%照明%' and EntireTime='" + eedate + "'", etime);
var alist = bll.GetModelListDate(" Reserve1='配电室低压' and Reserve2 like '%照明%' and EntireTime='" + ssdate + "'", stime);
var blist = bll.GetModelListDate(" Reserve1='配电室低压' and Reserve2 like '%照明%' and EntireTime='" + eedate + "'", etime);
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) / 10000 * 1.229, 3));
#endregion
#region
decimal? dnum = 0;
@ -161,11 +161,11 @@ namespace LonglslandExhibitionCenter.Controllers.api
{
bll.CreateTable(etime);
}
var alist = bll.GetModelListDate(" Reserve2 like '%电梯%' and EntireTime='" + ssdate + "'", stime);
var blist = bll.GetModelListDate(" Reserve2 like '%电梯%' and EntireTime='" + eedate + "'", etime);
var alist = bll.GetModelListDate(" Reserve1='配电室低压' and Reserve2 like '%电梯%' and EntireTime='" + ssdate + "'", stime);
var blist = bll.GetModelListDate(" Reserve1='配电室低压' and Reserve2 like '%电梯%' and EntireTime='" + eedate + "'", etime);
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) / 10000 * 1.229, 3));
#endregion
adata.Add(amodel);
model.data = adata;

View File

@ -64,13 +64,13 @@ namespace LonglslandExhibitionCenter.Controllers.api
{
bll.CreateTable(etime);
}
var alist = bll.GetModelListDate(" EntireTime='" + sdate + "' and Reserve1='配电室压'", stime);
var blist = bll.GetModelListDate(" EntireTime='" + edate + "' and Reserve1='配电室压'", 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 * Convert.ToDecimal(1.229)) / 26010), 3))
EnergyIndexing = Convert.ToDecimal(Math.Round(Convert.ToDouble((num / 10000 * Convert.ToDecimal(1.229)) / 26010), 3))
};
data.Add(model);
}
@ -102,13 +102,13 @@ namespace LonglslandExhibitionCenter.Controllers.api
{
bll.CreateTable(etime);
}
var alist = bll.GetModelListDate(" EntireTime='" + sdate + "' and Reserve1='配电室压'", stime);
var blist = bll.GetModelListDate(" EntireTime='" + edate + "' and Reserve1='配电室压'", 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.AddYears(-i).ToString("yyyy"),
EnergyIndexing = Convert.ToDecimal(Math.Round(Convert.ToDouble((num * Convert.ToDecimal(1.229)) / 26010), 3))
EnergyIndexing = Convert.ToDecimal(Math.Round(Convert.ToDouble((num / 10000 * Convert.ToDecimal(1.229)) / 26010), 3))
};
data.Add(model);

View File

@ -17,7 +17,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
public class GetLightingLoadController : ApiController
{
DataService.BLL.electricity_data bll = new DataService.BLL.electricity_data();
public HttpResponseMessage Get(string date="")
public HttpResponseMessage Get(string date = "")
{
var res = new get_lighting_load();
#region
@ -33,19 +33,19 @@ namespace LonglslandExhibitionCenter.Controllers.api
try
{
var data = new List<lighting_loadData>();
var now=DateTime.Now;
var now = DateTime.Now;
var list = bll.GetModelListDate("", time);
if (!string.IsNullOrEmpty(date))
{
if (date == "日")
{
var time_count = Convert.ToInt32(now.Hour);
for (int i = 0; i < time_count; i++)
for (int i = 1; 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)&&x.Reserve2.Contains("照明")).ToList();
var blist=list.Where(x=>x.EntireTime==Convert.ToDateTime(edate) && x.Reserve2.Contains("照明")).ToList();
var alist = list.Where(x => x.EntireTime == Convert.ToDateTime(sdate) && x.Reserve2.Contains("照明")).ToList();
var blist = list.Where(x => x.EntireTime == Convert.ToDateTime(edate) && x.Reserve2.Contains("照明")).ToList();
var model = new lighting_loadData()
{
time = Convert.ToDateTime(sdate).ToString("HH:00"),
@ -61,7 +61,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
for (int i = 0; i < time_count; i++)
{
var tsdate = now.AddDays(-i).ToString("yyyy-MM-dd 00:00:00");
var tedate = now.AddDays(-i+1).ToString("yyyy-MM-dd 00:00:00");
var tedate = now.AddDays(-i + 1).ToString("yyyy-MM-dd 00:00:00");
var ysdate = now.AddMonths(-1).AddDays(-i).ToString("yyyy-MM-dd 00:00:00");
var yedate = now.AddMonths(-1).AddDays(-i + 1).ToString("yyyy-MM-dd 00:00:00");
var ytime = now.AddMonths(-1).ToString("yyyyMM");
@ -72,7 +72,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
}
var list1 = bll.GetModelListDate("", ytime);
var alist = list.Where(x => x.EntireTime >= Convert.ToDateTime(tsdate) && x.EntireTime < Convert.ToDateTime(tedate) && x.Reserve2.Contains("照明")).ToList();
var blist= list1.Where(x => x.EntireTime >= Convert.ToDateTime(ysdate) && x.EntireTime < Convert.ToDateTime(yedate) && x.Reserve2.Contains("照明")).ToList();
var blist = list1.Where(x => x.EntireTime >= Convert.ToDateTime(ysdate) && x.EntireTime < Convert.ToDateTime(yedate) && x.Reserve2.Contains("照明")).ToList();
var model = new lighting_loadData()
{
time = now.AddDays(-i).ToString("MM-dd"),
@ -125,7 +125,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
res.code = 201;
res.msg = "参数不能为空";
}
var adata=data.OrderBy(x=>x.time).ToList();
var adata = data.OrderBy(x => x.time).ToList();
res.code = 200;
res.msg = "成功";
res.data = adata;

View File

@ -27,7 +27,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
{
var data = new List<load_classifcationData>();
var sdate = DateTime.Now.ToString("yyyy-MM-dd 00:00:00");
var edate = DateTime.Now.AddDays(1).ToString("yyyy-MM-dd 00:00:00");
var edate = DateTime.Now.ToString("yyyy-MM-dd HH:00:00");
var time = DateTime.Now.ToString("yyyyMM");
var a = bll.IsExistsTable(date_base, "electricity_data_" + time);
if (a == false)
@ -36,13 +36,13 @@ namespace LonglslandExhibitionCenter.Controllers.api
}
var list = bll.GetModelListDate(" EntireTime>='" + sdate + "' and EntireTime<'" + edate + "'", time);
//一级
var alist = list.Where(x=>x.Reserve2.Contains("梯")).ToList();
var alist = list.Where(x => x.Reserve2.Contains("梯")).ToList();
decimal? num1 = alist.Sum(x => x.P);
//二级
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()
{

View File

@ -35,9 +35,9 @@ namespace LonglslandExhibitionCenter.Controllers.api
{
var data = new List<pavilion_lightingData>();
var list = bll.GetModelListDate(" Reserve2 like '%照明%'", time);
var now=DateTime.Now;
var now = DateTime.Now;
var sdate = now.ToString("yyyy-MM-dd 00:00:00");
var edate = now.AddDays(1).ToString("yyyy-MM-dd 00:00:00");
var edate = now.ToString("yyyy-MM-dd HH:00:00");
var alist = list.Where(x => x.EntireTime >= Convert.ToDateTime(sdate) && x.EntireTime < Convert.ToDateTime(edate)).ToList();
var model = new pavilion_lightingData()
{

View File

@ -29,7 +29,7 @@ namespace LonglslandExhibitionCenter.Controllers
var time = DateTime.Now.ToString("yyyyMM");
var now = DateTime.Now;
var time_count = Convert.ToInt32(DateTime.Now.Hour);
for (int i = 1; i < time_count; i++)
for (int i = 1; i <= time_count; i++)
{
var jdate = now.AddHours(-i).ToString("yyyy-MM-dd HH:00:00");
// 只处理今天的数据
@ -43,7 +43,7 @@ namespace LonglslandExhibitionCenter.Controllers
{
bll.CreateTable(jtime);
}
var jlist = bll.GetModelListDate(" EntireTime='" + jdate + "' and Reserve1='配电室压'", jtime);
var jlist = bll.GetModelListDate(" EntireTime='" + jdate + "' and Reserve1='配电室压'", jtime);
if (jlist.Count == 0)
{
var model = new real_loadData

View File

@ -14,8 +14,9 @@ namespace LonglslandExhibitionCenter.Controllers.api
/// 总览-实时负荷
/// </summary>
public class GetRealtimeLoadController : ApiController
{ DataService.BLL.electricity_data bll = new DataService.BLL.electricity_data();
// GET api/<controller
{
DataService.BLL.electricity_data bll = new DataService.BLL.electricity_data();
public HttpResponseMessage Get()
{
var res = new get_realtime_load();
@ -24,20 +25,20 @@ namespace LonglslandExhibitionCenter.Controllers.api
var data = new List<realtime_loadData>();
var now = DateTime.Now;
var time = DateTime.Now.ToString("yyyyMM");
var list = bll.GetModelListDate(" Reserve1='配电室高压'", time);
var list = bll.GetModelListDate(" Reserve1='配电室低压' ", time);
var stime = now.AddHours(-1).ToString("yyyy-MM-dd HH:00:00");
var etime = now.ToString("yyyy-MM-dd 00:00:00");
var alist=list.Where(x=>x.EntireTime>=Convert.ToDateTime(etime)&&x.EntireTime<=Convert.ToDateTime(stime)).ToList();
var p = alist.Sum(x => x.P);
var alist = list.Where(x => x.EntireTime >= Convert.ToDateTime(etime) && x.EntireTime <= Convert.ToDateTime(stime)).ToList();
var list1 = list.Where(x => x.EntireTime == Convert.ToDateTime(stime)).ToList();
var list2=list.Where(x=>x.EntireTime==Convert.ToDateTime(etime)).ToList();
var p = list1.Sum(x => x.P);
var list2 = list.Where(x => x.EntireTime == Convert.ToDateTime(etime)).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 realtime_loadData()
{
Amount = 3,
P= p,
EH=num1-num2
P = p,
EH = num1 - num2
};
data.Add(model);

View File

@ -79,8 +79,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
}
var model = new system_energyData()
{
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)),
DayPeak = Convert.ToDecimal(Math.Round(Convert.ToDouble(anum / 10000 * Convert.ToDecimal(1.229)), 3)),
MonthPeak = Convert.ToDecimal(Math.Round(Convert.ToDouble(cnum / 10000 * Convert.ToDecimal(1.229)), 3)),
};
#endregion
var adata = new List<system_energy>();
@ -114,8 +114,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
var qnum1 = qlist1.Sum(x => x.EH);
var amodel = new system_energy()
{
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)),
This = Convert.ToDecimal(Math.Round(Convert.ToDouble((jnum1 - snum1) / 10000 * Convert.ToDecimal(1.229)), 3)),
Last = Convert.ToDecimal(Math.Round(Convert.ToDouble((snum1 - qnum1) / 10000 * Convert.ToDecimal(1.229)), 3)),
};
if (amodel.This < 0)
{
@ -139,11 +139,11 @@ namespace LonglslandExhibitionCenter.Controllers.api
}
else if (amodel.This > amodel.Last)
{
amodel.Year = ((amodel.This / amodel.Last) * 100) - 100;
amodel.Year = Convert.ToDecimal(Math.Round(Convert.ToDouble(((amodel.This / amodel.Last) * 100) - 100), 3));
}
else if (amodel.This < amodel.Last)
{
amodel.Year = 100 - ((amodel.This / amodel.Last) * 100);
amodel.Year = Convert.ToDecimal(Math.Round(Convert.ToDouble(100 - ((amodel.This / amodel.Last) * 100)), 3));
}
adata.Add(amodel);
#endregion
@ -177,8 +177,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
var qnum2 = qlist2.Sum(x => x.EH);
var bmodel = new system_energy()
{
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)),
This = Convert.ToDecimal(Math.Round(Convert.ToDouble((jnum2 - snum2) / 10000 * Convert.ToDecimal(1.229)), 3)),
Last = Convert.ToDecimal(Math.Round(Convert.ToDouble((snum2 - qnum2) / 10000 * Convert.ToDecimal(1.229)), 3)),
};
if (bmodel.This < 0)
{
@ -202,11 +202,11 @@ namespace LonglslandExhibitionCenter.Controllers.api
}
else if (bmodel.This > bmodel.Last)
{
bmodel.Year = ((bmodel.This / bmodel.Last) * 100) - 100;
bmodel.Year = Convert.ToDecimal(Math.Round(Convert.ToDouble(((bmodel.This / bmodel.Last) * 100) - 100), 3));
}
else if (bmodel.This < bmodel.Last)
{
bmodel.Year = 100 - ((bmodel.This / bmodel.Last) * 100);
bmodel.Year = Convert.ToDecimal(Math.Round(Convert.ToDouble(100 - ((bmodel.This / bmodel.Last) * 100)), 3));
}
adata.Add(bmodel);
model.data = adata;
@ -242,8 +242,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
var qnum3 = qlist3.Sum(x => x.EH);
var cmodel = new system_energy()
{
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)),
This = Convert.ToDecimal(Math.Round(Convert.ToDouble((jnum3 - snum3) / 10000 * Convert.ToDecimal(1.229)), 3)),
Last = Convert.ToDecimal(Math.Round(Convert.ToDouble((snum3 - qnum3) / 10000 * Convert.ToDecimal(1.229)), 3)),
};
if (cmodel.This < 0)
{
@ -267,11 +267,11 @@ namespace LonglslandExhibitionCenter.Controllers.api
}
else if (cmodel.This > cmodel.Last)
{
cmodel.Year = ((cmodel.This / cmodel.Last) * 100) - 100;
cmodel.Year = Convert.ToDecimal(Math.Round(Convert.ToDouble(((cmodel.This / cmodel.Last) * 100) - 100), 3));
}
else if (cmodel.This < cmodel.Last)
{
cmodel.Year = 100 - ((cmodel.This / cmodel.Last) * 100);
cmodel.Year = Convert.ToDecimal(Math.Round(Convert.ToDouble(100 - ((cmodel.This / cmodel.Last) * 100)), 3));
}
adata.Add(cmodel);
model.data = adata;
@ -321,8 +321,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
}
var model = new system_energyData()
{
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)),
DayPeak = Convert.ToDecimal(Math.Round(Convert.ToDouble(anum / 10000 * Convert.ToDecimal(1.229)), 3)),
MonthPeak = Convert.ToDecimal(Math.Round(Convert.ToDouble(cnum / 10000 * 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 = 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)),
This = Convert.ToDecimal(Math.Round(Convert.ToDouble((jnum1 - snum1) / 10000 * Convert.ToDecimal(1.229)), 3)),
Last = Convert.ToDecimal(Math.Round(Convert.ToDouble((snum1 - qnum1) / 10000 * Convert.ToDecimal(1.229)), 3)),
};
if (amodel.This < 0)
{
@ -381,11 +381,11 @@ namespace LonglslandExhibitionCenter.Controllers.api
}
else if (amodel.This > amodel.Last)
{
amodel.Year = ((amodel.This / amodel.Last) * 100) - 100;
amodel.Year = Convert.ToDecimal(Math.Round(Convert.ToDouble(((amodel.This / amodel.Last) * 100) - 100), 3));
}
else if (amodel.This < amodel.Last)
{
amodel.Year = 100 - ((amodel.This / amodel.Last) * 100);
amodel.Year = Convert.ToDecimal(Math.Round(Convert.ToDouble(100 - ((amodel.This / amodel.Last) * 100)), 3));
}
adata.Add(amodel);
#endregion
@ -419,8 +419,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
var qnum2 = qlist2.Sum(x => x.EH);
var bmodel = new system_energy()
{
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)),
This = Convert.ToDecimal(Math.Round(Convert.ToDouble((jnum2 - snum2) / 10000 * Convert.ToDecimal(1.229)), 3)),
Last = Convert.ToDecimal(Math.Round(Convert.ToDouble((snum2 - qnum2) / 10000 * Convert.ToDecimal(1.229)), 3)),
};
if (bmodel.This < 0)
{
@ -444,11 +444,11 @@ namespace LonglslandExhibitionCenter.Controllers.api
}
else if (bmodel.This > bmodel.Last)
{
bmodel.Year = ((bmodel.This / bmodel.Last) * 100) - 100;
bmodel.Year = Convert.ToDecimal(Math.Round(Convert.ToDouble(((bmodel.This / bmodel.Last) * 100) - 100), 3));
}
else if (bmodel.This < bmodel.Last)
{
bmodel.Year = 100 - ((bmodel.This / bmodel.Last) * 100);
bmodel.Year = Convert.ToDecimal(Math.Round(Convert.ToDouble(100 - ((bmodel.This / bmodel.Last) * 100)), 3));
}
adata.Add(bmodel);
model.data = adata;
@ -484,8 +484,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
var qnum3 = qlist3.Sum(x => x.EH);
var cmodel = new system_energy()
{
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)),
This = Convert.ToDecimal(Math.Round(Convert.ToDouble((jnum3 - snum3) / 10000 * Convert.ToDecimal(1.229)), 3)),
Last = Convert.ToDecimal(Math.Round(Convert.ToDouble((snum3 - qnum3) / 10000 * Convert.ToDecimal(1.229)), 3)),
};
if (cmodel.This < 0)
{
@ -509,11 +509,11 @@ namespace LonglslandExhibitionCenter.Controllers.api
}
else if (cmodel.This > cmodel.Last)
{
cmodel.Year = ((cmodel.This / cmodel.Last) * 100) - 100;
cmodel.Year = Convert.ToDecimal(Math.Round(Convert.ToDouble(((cmodel.This / cmodel.Last) * 100) - 100), 3));
}
else if (cmodel.This < cmodel.Last)
{
cmodel.Year = 100 - ((cmodel.This / cmodel.Last) * 100);
cmodel.Year = Convert.ToDecimal(Math.Round(Convert.ToDouble(100 - ((cmodel.This / cmodel.Last) * 100)), 3));
}
adata.Add(cmodel);
model.data = adata;
@ -563,8 +563,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
}
var model = new system_energyData()
{
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)),
DayPeak = Convert.ToDecimal(Math.Round(Convert.ToDouble(anum / 10000 * Convert.ToDecimal(1.229)), 3)),
MonthPeak = Convert.ToDecimal(Math.Round(Convert.ToDouble(cnum / 10000 * 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 = 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)),
This = Convert.ToDecimal(Math.Round(Convert.ToDouble((jnum1 - snum1) / 10000 * Convert.ToDecimal(1.229)), 3)),
Last = Convert.ToDecimal(Math.Round(Convert.ToDouble((snum1 - qnum1) / 10000 * Convert.ToDecimal(1.229)), 3)),
};
if (amodel.This < 0)
{
@ -623,11 +623,11 @@ namespace LonglslandExhibitionCenter.Controllers.api
}
else if (amodel.This > amodel.Last)
{
amodel.Year = ((amodel.This / amodel.Last) * 100) - 100;
amodel.Year = Convert.ToDecimal(Math.Round(Convert.ToDouble(((amodel.This / amodel.Last) * 100) - 100), 3));
}
else if (amodel.This < amodel.Last)
{
amodel.Year = 100 - ((amodel.This / amodel.Last) * 100);
amodel.Year = Convert.ToDecimal(Math.Round(Convert.ToDouble(100 - ((amodel.This / amodel.Last) * 100)), 3));
}
adata.Add(amodel);
#endregion
@ -661,8 +661,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
var qnum2 = qlist2.Sum(x => x.EH);
var bmodel = new system_energy()
{
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)),
This = Convert.ToDecimal(Math.Round(Convert.ToDouble((jnum2 - snum2) / 10000 * Convert.ToDecimal(1.229)), 3)),
Last = Convert.ToDecimal(Math.Round(Convert.ToDouble((snum2 - qnum2) / 10000 * Convert.ToDecimal(1.229)), 3)),
};
if (bmodel.This < 0)
{
@ -686,11 +686,11 @@ namespace LonglslandExhibitionCenter.Controllers.api
}
else if (bmodel.This > bmodel.Last)
{
bmodel.Year = ((bmodel.This / bmodel.Last) * 100) - 100;
bmodel.Year = Convert.ToDecimal(Math.Round(Convert.ToDouble(((bmodel.This / bmodel.Last) * 100) - 100), 3));
}
else if (bmodel.This < bmodel.Last)
{
bmodel.Year = 100 - ((bmodel.This / bmodel.Last) * 100);
bmodel.Year = Convert.ToDecimal(Math.Round(Convert.ToDouble(100 - ((bmodel.This / bmodel.Last) * 100)), 3));
}
adata.Add(bmodel);
model.data = adata;
@ -726,8 +726,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
var qnum3 = qlist3.Sum(x => x.EH);
var cmodel = new system_energy()
{
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)),
This = Convert.ToDecimal(Math.Round(Convert.ToDouble((jnum3 - snum3) / 10000 * Convert.ToDecimal(1.229)), 3)),
Last = Convert.ToDecimal(Math.Round(Convert.ToDouble((snum3 - qnum3) / 10000 * Convert.ToDecimal(1.229)), 3)),
};
if (cmodel.This < 0)
{
@ -751,11 +751,11 @@ namespace LonglslandExhibitionCenter.Controllers.api
}
else if (cmodel.This > cmodel.Last)
{
cmodel.Year = ((cmodel.This / cmodel.Last) * 100) - 100;
cmodel.Year = Convert.ToDecimal(Math.Round(Convert.ToDouble(((cmodel.This / cmodel.Last) * 100) - 100), 3));
}
else if (cmodel.This < cmodel.Last)
{
cmodel.Year = 100 - ((cmodel.This / cmodel.Last) * 100);
cmodel.Year = Convert.ToDecimal(Math.Round(Convert.ToDouble(100 - ((cmodel.This / cmodel.Last) * 100)), 3));
}
adata.Add(cmodel);
model.data = adata;
@ -805,8 +805,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
}
var model = new system_energyData()
{
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)),
DayPeak = Convert.ToDecimal(Math.Round(Convert.ToDouble(anum / 10000 * Convert.ToDecimal(1.229)), 3)),
MonthPeak = Convert.ToDecimal(Math.Round(Convert.ToDouble(cnum / 10000 * 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 = 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)),
This = Convert.ToDecimal(Math.Round(Convert.ToDouble((jnum1 - snum1) / 10000 * Convert.ToDecimal(1.229)), 3)),
Last = Convert.ToDecimal(Math.Round(Convert.ToDouble((snum1 - qnum1) / 10000 * Convert.ToDecimal(1.229)), 3)),
};
if (amodel.This < 0)
{
@ -865,11 +865,11 @@ namespace LonglslandExhibitionCenter.Controllers.api
}
else if (amodel.This > amodel.Last)
{
amodel.Year = ((amodel.This / amodel.Last) * 100) - 100;
amodel.Year = Convert.ToDecimal(Math.Round(Convert.ToDouble(((amodel.This / amodel.Last) * 100) - 100), 3));
}
else if (amodel.This < amodel.Last)
{
amodel.Year = 100 - ((amodel.This / amodel.Last) * 100);
amodel.Year = Convert.ToDecimal(Math.Round(Convert.ToDouble(100 - ((amodel.This / amodel.Last) * 100)), 3));
}
adata.Add(amodel);
#endregion
@ -903,8 +903,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
var qnum2 = qlist2.Sum(x => x.EH);
var bmodel = new system_energy()
{
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)),
This = Convert.ToDecimal(Math.Round(Convert.ToDouble((jnum2 - snum2) / 10000 * Convert.ToDecimal(1.229)), 3)),
Last = Convert.ToDecimal(Math.Round(Convert.ToDouble((snum2 - qnum2) / 10000 * Convert.ToDecimal(1.229)), 3)),
};
if (bmodel.This < 0)
{
@ -928,11 +928,11 @@ namespace LonglslandExhibitionCenter.Controllers.api
}
else if (bmodel.This > bmodel.Last)
{
bmodel.Year = ((bmodel.This / bmodel.Last) * 100) - 100;
bmodel.Year = Convert.ToDecimal(Math.Round(Convert.ToDouble(((bmodel.This / bmodel.Last) * 100) - 100), 3));
}
else if (bmodel.This < bmodel.Last)
{
bmodel.Year = 100 - ((bmodel.This / bmodel.Last) * 100);
bmodel.Year = Convert.ToDecimal(Math.Round(Convert.ToDouble(100 - ((bmodel.This / bmodel.Last) * 100)), 3));
}
adata.Add(bmodel);
model.data = adata;
@ -968,8 +968,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
var qnum3 = qlist3.Sum(x => x.EH);
var cmodel = new system_energy()
{
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)),
This = Convert.ToDecimal(Math.Round(Convert.ToDouble((jnum3 - snum3) / 10000 * Convert.ToDecimal(1.229)), 3)),
Last = Convert.ToDecimal(Math.Round(Convert.ToDouble((snum3 - qnum3) / 10000 * Convert.ToDecimal(1.229)), 3)),
};
if (cmodel.This < 0)
{
@ -993,11 +993,11 @@ namespace LonglslandExhibitionCenter.Controllers.api
}
else if (cmodel.This > cmodel.Last)
{
cmodel.Year = ((cmodel.This / cmodel.Last) * 100) - 100;
cmodel.Year = Convert.ToDecimal(Math.Round(Convert.ToDouble(((cmodel.This / cmodel.Last) * 100) - 100), 3));
}
else if (cmodel.This < cmodel.Last)
{
cmodel.Year = 100 - ((cmodel.This / cmodel.Last) * 100);
cmodel.Year = Convert.ToDecimal(Math.Round(Convert.ToDouble(100 - ((cmodel.This / cmodel.Last) * 100)), 3));
}
adata.Add(cmodel);
model.data = adata;
@ -1047,8 +1047,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
}
var model = new system_energyData()
{
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)),
DayPeak = Convert.ToDecimal(Math.Round(Convert.ToDouble(anum / 10000 * Convert.ToDecimal(1.229)), 3)),
MonthPeak = Convert.ToDecimal(Math.Round(Convert.ToDouble(cnum / 10000 * 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 = 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)),
This = Convert.ToDecimal(Math.Round(Convert.ToDouble((jnum1 - snum1) / 10000 * Convert.ToDecimal(1.229)), 3)),
Last = Convert.ToDecimal(Math.Round(Convert.ToDouble((snum1 - qnum1) / 10000 * Convert.ToDecimal(1.229)), 3)),
};
if (amodel.This < 0)
{
@ -1107,11 +1107,11 @@ namespace LonglslandExhibitionCenter.Controllers.api
}
else if (amodel.This > amodel.Last)
{
amodel.Year = ((amodel.This / amodel.Last) * 100) - 100;
amodel.Year = Convert.ToDecimal(Math.Round(Convert.ToDouble(((amodel.This / amodel.Last) * 100) - 100), 3));
}
else if (amodel.This < amodel.Last)
{
amodel.Year = 100 - ((amodel.This / amodel.Last) * 100);
amodel.Year = Convert.ToDecimal(Math.Round(Convert.ToDouble(100 - ((amodel.This / amodel.Last) * 100)), 3));
}
adata.Add(amodel);
#endregion
@ -1145,8 +1145,8 @@ namespace LonglslandExhibitionCenter.Controllers.api
var qnum2 = qlist2.Sum(x => x.EH);
var bmodel = new system_energy()
{
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)),
This = Convert.ToDecimal(Math.Round(Convert.ToDouble((jnum2 - snum2) / 10000 * Convert.ToDecimal(1.229)), 3)),
Last = Convert.ToDecimal(Math.Round(Convert.ToDouble((snum2 - qnum2) / 10000 * Convert.ToDecimal(1.229)), 3)),
};
if (bmodel.This < 0)
{
@ -1170,11 +1170,11 @@ namespace LonglslandExhibitionCenter.Controllers.api
}
else if (bmodel.This > bmodel.Last)
{
bmodel.Year = ((bmodel.This / bmodel.Last) * 100) - 100;
bmodel.Year = Convert.ToDecimal(Math.Round(Convert.ToDouble(((bmodel.This / bmodel.Last) * 100) - 100), 3));
}
else if (bmodel.This < bmodel.Last)
{
bmodel.Year = 100 - ((bmodel.This / bmodel.Last) * 100);
bmodel.Year = Convert.ToDecimal(Math.Round(Convert.ToDouble(100 - ((bmodel.This / bmodel.Last) * 100)), 3));
}
adata.Add(bmodel);
model.data = adata;
@ -1192,26 +1192,26 @@ namespace LonglslandExhibitionCenter.Controllers.api
{
bll.CreateTable(jtime3);
}
var jlist3 = bll.GetModelListDate(" EntireTime='" + jdate2 + "' && Reserve2 like '%梯%'", jtime3);
var jlist3 = bll.GetModelListDate(" EntireTime='" + jdate2 + "' && Reserve2 like '%梯%'", jtime3);
var b3 = bll.IsExistsTable(date_base, "electricity_data_" + stime3);
if (b3 == false)
{
bll.CreateTable(stime3);
}
var slist3 = bll.GetModelListDate(" EntireTime='" + sdate3 + "' && Reserve2 like '%梯%'", stime3);
var slist3 = bll.GetModelListDate(" EntireTime='" + sdate3 + "' && Reserve2 like '%梯%'", stime3);
var q3 = bll.IsExistsTable(date_base, "electricity_data_" + qtime3);
if (q3 == false)
{
bll.CreateTable(qtime3);
}
var qlist3 = bll.GetModelListDate(" EntireTime='" + qdate3 + "' && Reserve2 like '%梯%'", qtime3);
var qlist3 = bll.GetModelListDate(" EntireTime='" + qdate3 + "' && Reserve2 like '%梯%'", qtime3);
var jnum3 = jlist3.Sum(x => x.EH);
var snum3 = slist3.Sum(x => x.EH);
var qnum3 = qlist3.Sum(x => x.EH);
var cmodel = new system_energy()
{
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)),
This = Convert.ToDecimal(Math.Round(Convert.ToDouble((jnum3 - snum3) / 10000 * Convert.ToDecimal(1.229)), 3)),
Last = Convert.ToDecimal(Math.Round(Convert.ToDouble((snum3 - qnum3) / 10000 * Convert.ToDecimal(1.229)), 3)),
};
if (cmodel.This < 0)
{
@ -1235,11 +1235,11 @@ namespace LonglslandExhibitionCenter.Controllers.api
}
else if (cmodel.This > cmodel.Last)
{
cmodel.Year = ((cmodel.This / cmodel.Last) * 100) - 100;
cmodel.Year = Convert.ToDecimal(Math.Round(Convert.ToDouble(((cmodel.This / cmodel.Last) * 100) - 100), 3));
}
else if (cmodel.This < cmodel.Last)
{
cmodel.Year = 100 - ((cmodel.This / cmodel.Last) * 100);
cmodel.Year = Convert.ToDecimal(Math.Round(Convert.ToDouble(100 - ((cmodel.This / cmodel.Last) * 100)), 3));
}
adata.Add(cmodel);
model.data = adata;

View File

@ -34,7 +34,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
try
{
var data = new List<system_purgeData>();
var list = bll.GetModelListDate("", time);
var list = bll.GetModelListDate(" Reserve1='配电室低压' ", time);
var sdate = Convert.ToDateTime(DateTime.Now.AddHours(-1).ToString("yyyy-MM-dd HH:00:00"));
var edate = Convert.ToDateTime(DateTime.Now.ToString("yyyy-MM-dd 00:00:00"));
var salist = list.Where(x => x.Reserve2.Contains("空调") && x.EntireTime == sdate).ToList();
@ -49,7 +49,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
var eflist = list.Where(x => x.Reserve2.Contains("展陈") && x.EntireTime == edate).ToList();
var model1 = new system_purgeData();
model1.name = "空调系统";
model1.CarbonEmission =Convert.ToDecimal(Math.Round(Convert.ToDouble( salist.Sum(x => x.EH) - ealist.Sum(x => x.EH))/1000*0.5703,3));
model1.CarbonEmission = Convert.ToDecimal(Math.Round(Convert.ToDouble(salist.Sum(x => x.EH) - ealist.Sum(x => x.EH)) / 1000 * 0.5703, 3));
if (model1.CarbonEmission < 0)
{
model1.CarbonEmission = 0;
@ -57,7 +57,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
data.Add(model1);
var model2 = new system_purgeData();
model2.name = "照明系统";
model2.CarbonEmission =Convert.ToDecimal(Math.Round(Convert.ToDouble(sblist.Sum(x => x.EH) - eblist.Sum(x => x.EH))/1000*0.5703,3));
model2.CarbonEmission = Convert.ToDecimal(Math.Round(Convert.ToDouble(sblist.Sum(x => x.EH) - eblist.Sum(x => x.EH)) / 1000 * 0.5703, 3));
if (model2.CarbonEmission < 0)
{
model2.CarbonEmission = 0;

View File

@ -35,9 +35,9 @@ namespace LonglslandExhibitionCenter.Controllers.api
{
var data = new List<system_rankingData>();
var list = bll.GetModelListDate("", time);
var sdate =Convert.ToDateTime( DateTime.Now.AddHours(-1).ToString("yyyy-MM-dd HH:00:00"));
var edate =Convert.ToDateTime( DateTime.Now.ToString("yyyy-MM-dd 00:00:00"));
var salist = list.Where(x => x.Reserve2.Contains("空调") &&x.EntireTime==sdate).ToList();
var sdate = Convert.ToDateTime(DateTime.Now.AddHours(-1).ToString("yyyy-MM-dd HH:00:00"));
var edate = Convert.ToDateTime(DateTime.Now.ToString("yyyy-MM-dd 00:00:00"));
var salist = list.Where(x => x.Reserve2.Contains("空调") && x.EntireTime == sdate).ToList();
var sblist = list.Where(x => x.Reserve2.Contains("照明") && x.EntireTime == sdate).ToList();
var sclist = list.Where(x => x.Reserve2.Contains("消防") && x.EntireTime == sdate).ToList();
var selist = list.Where(x => x.Reserve2.Contains("电梯") && x.EntireTime == sdate).ToList();
@ -47,40 +47,40 @@ namespace LonglslandExhibitionCenter.Controllers.api
var eclist = list.Where(x => x.Reserve2.Contains("消防") && x.EntireTime == edate).ToList();
var eelist = list.Where(x => x.Reserve2.Contains("电梯") && x.EntireTime == edate).ToList();
var eflist = list.Where(x => x.Reserve2.Contains("展陈") && x.EntireTime == edate).ToList();
var model1=new system_rankingData();
var model1 = new system_rankingData();
model1.name = "空调系统";
model1.EH =Convert.ToDecimal(Math.Round(Convert.ToDouble(salist.Sum(x => x.EH)-ealist.Sum(x=>x.EH)),3));
model1.EH = Convert.ToDecimal(Math.Round(Convert.ToDouble(salist.Sum(x => x.EH) - ealist.Sum(x => x.EH)), 3));
if (model1.EH < 0)
{
model1.EH = 0;
model1.EH = 0;
}
data.Add(model1);
var model2=new system_rankingData();
var model2 = new system_rankingData();
model2.name = "照明系统";
model2.EH=Convert.ToDecimal(Math.Round(Convert.ToDouble(sblist.Sum(x=>x.EH)-eblist.Sum(x=>x.EH)),3));
if(model2.EH < 0)
model2.EH = Convert.ToDecimal(Math.Round(Convert.ToDouble(sblist.Sum(x => x.EH) - eblist.Sum(x => x.EH)), 3));
if (model2.EH < 0)
{
model2.EH = 0;
}
data.Add(model2);
var model3=new system_rankingData();
var model3 = new system_rankingData();
model3.name = "消防系统";
model3.EH=Convert.ToDecimal(Math.Round(Convert.ToDouble(sclist.Sum(x=>x.EH)-eclist.Sum(x=>x.EH)),3));
model3.EH = Convert.ToDecimal(Math.Round(Convert.ToDouble(sclist.Sum(x => x.EH) - eclist.Sum(x => x.EH)), 3));
if (model3.EH < 0)
{
model3.EH = 0;
}
var model4=new system_rankingData();
var model4 = new system_rankingData();
model4.name = "电梯系统";
model4.EH=Convert.ToDecimal(Math.Round(Convert.ToDouble(selist.Sum(x=>x.EH)-eelist.Sum(x=>x.EH)),3));
model4.EH = Convert.ToDecimal(Math.Round(Convert.ToDouble(selist.Sum(x => x.EH) - eelist.Sum(x => x.EH)), 3));
if (model4.EH < 0)
{
model4.EH = 0;
}
data.Add(model4);
var model5=new system_rankingData();
var model5 = new system_rankingData();
model5.name = "展陈系统";
model5.EH=Convert.ToDecimal(Math.Round(Convert.ToDouble(sflist.Sum(x=>x.EH)-eflist.Sum(x=>x.EH)),3));
model5.EH = Convert.ToDecimal(Math.Round(Convert.ToDouble(sflist.Sum(x => x.EH) - eflist.Sum(x => x.EH)), 3));
if (model5.EH < 0)
{
model5.EH = 0;

View File

@ -18,7 +18,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
{
DataService.BLL.electricity_data bll = new DataService.BLL.electricity_data();
// GET api/<controller>
public HttpResponseMessage Get(string date="")
public HttpResponseMessage Get(string date = "")
{
var res = new get_total_energy();
#region
@ -33,11 +33,11 @@ namespace LonglslandExhibitionCenter.Controllers.api
#endregion
try
{
if(!string.IsNullOrEmpty(date))
if (!string.IsNullOrEmpty(date))
{
var data = new List<total_energyData>();
var now = DateTime.Now;
var list = bll.GetModelListDate(" Reserve1='配电室压'", time);
var list = bll.GetModelListDate(" Reserve1='配电室压'", time);
if (date == "日")
{
var time_count = Convert.ToInt32(DateTime.Now.Day);
@ -46,21 +46,21 @@ namespace LonglslandExhibitionCenter.Controllers.api
string sdate;
if (i == 0)
{
sdate= now.AddHours(-1).ToString("yyyy-MM-dd HH:00:00");
sdate = now.AddHours(-1).ToString("yyyy-MM-dd HH:00:00");
}
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");
var alist = list.Where(x => x.EntireTime == Convert.ToDateTime(sdate)).ToList();
var blist=list.Where(x=>x.EntireTime==Convert.ToDateTime(edate)).ToList();
var num= alist.Sum(x=>x.EH)-blist.Sum(x=>x.EH);
var blist = list.Where(x => x.EntireTime == Convert.ToDateTime(edate)).ToList();
var num = alist.Sum(x => x.EH) - blist.Sum(x => x.EH);
var model = new total_energyData()
{
time = DateTime.Now.AddDays(-i).ToString("MM-dd"),
EH = Convert.ToDecimal(Math.Round(Convert.ToDouble(num* Convert.ToDecimal(1.229)),3))
EH = Convert.ToDecimal(Math.Round(Convert.ToDouble(num / 10000 * Convert.ToDecimal(1.229)), 3))
};
if (model.EH < 0)
{
@ -81,9 +81,9 @@ namespace LonglslandExhibitionCenter.Controllers.api
}
else
{
sdate = now.AddMonths(-i+1).ToString("yyyy-MM-01 00:00:00");
sdate = now.AddMonths(-i + 1).ToString("yyyy-MM-01 00:00:00");
}
var edate=now.AddMonths(-i).ToString("yyyy-MM-01 00:00:00");
var edate = now.AddMonths(-i).ToString("yyyy-MM-01 00:00:00");
var stime = Convert.ToDateTime(sdate).ToString("yyyyMM");
var etime = Convert.ToDateTime((edate)).ToString("yyyyMM");
var b = bll.IsExistsTable(date_base, "electricity_data_" + stime);
@ -96,13 +96,13 @@ namespace LonglslandExhibitionCenter.Controllers.api
{
bll.CreateTable(etime);
}
var alist = bll.GetModelListDate(" EntireTime='"+sdate+ "' and Reserve1='配电室高压'", stime);
var blist = bll.GetModelListDate(" EntireTime='" + edate + "' and Reserve1='配电室压'", 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 total_energyData()
{
time = Convert.ToDateTime(now).AddMonths(-i).ToString("MM月"),
EH =Convert.ToDecimal(Math.Round(Convert.ToDouble(num*Convert.ToDecimal(1.229)),3))
EH = Convert.ToDecimal(Math.Round(Convert.ToDouble(num / 10000 * Convert.ToDecimal(1.229)), 3))
};
if (model.EH < 0)
{
@ -111,7 +111,7 @@ namespace LonglslandExhibitionCenter.Controllers.api
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;

View File

@ -320,7 +320,7 @@
<AutoAssignPort>True</AutoAssignPort>
<DevelopmentServerPort>15586</DevelopmentServerPort>
<DevelopmentServerVPath>/</DevelopmentServerVPath>
<IISUrl>https://localhost:44396/</IISUrl>
<IISUrl>http://localhost:44396/</IISUrl>
<NTLMAuthentication>False</NTLMAuthentication>
<UseCustomServer>False</UseCustomServer>
<CustomServerUrl>

View File

@ -8,8 +8,8 @@
<IISExpressWindowsAuthentication />
<IISExpressUseClassicPipelineMode />
<UseGlobalApplicationHostFile />
<LastActiveSolutionConfig>Debug|Any CPU</LastActiveSolutionConfig>
<NameOfLastUsedPublishProfile>E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\Properties\PublishProfiles\FolderProfile.pubxml</NameOfLastUsedPublishProfile>
<LastActiveSolutionConfig>Release|Any CPU</LastActiveSolutionConfig>
<NameOfLastUsedPublishProfile>F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\Properties\PublishProfiles\FolderProfile.pubxml</NameOfLastUsedPublishProfile>
</PropertyGroup>
<ProjectExtensions>
<VisualStudio>

View File

@ -10,7 +10,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration>
<LastUsedPlatform>Any CPU</LastUsedPlatform>
<PublishProvider>FileSystem</PublishProvider>
<PublishUrl>E:\项目\长岛展览馆\发布文件</PublishUrl>
<PublishUrl>F:\项目\长岛展览馆\发布文件</PublishUrl>
<WebPublishMethod>FileSystem</WebPublishMethod>
<_TargetId>Folder</_TargetId>
<SiteUrlToLaunchAfterPublish />

View File

@ -4,352 +4,352 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project>
<PropertyGroup>
<_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>
<_PublishTargetUrl>F:\项目\长岛展览馆\发布文件</_PublishTargetUrl>
<History>True|2024-08-15T05:20:14.7663530Z;True|2024-08-14T10:07:28.2388461+08:00;True|2024-08-14T10:07:03.3134871+08:00;True|2024-08-14T10:06:43.4199921+08:00;True|2024-08-14T10:05:39.6303984+08:00;True|2024-08-14T10:00:18.4168360+08:00;True|2024-08-14T09:50:15.7791885+08:00;True|2024-08-11T20:53:54.5556138+08:00;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>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/Api.cshtml">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/Index.cshtml">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/ResourceModel.cshtml">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Shared/_Layout.cshtml">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Web.config">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Areas/HelpPage/Views/_ViewStart.cshtml">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="bin/Antlr3.Runtime.dll">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:44</publishTime>
</File>
<File Include="bin/Antlr3.Runtime.pdb">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:44</publishTime>
</File>
<File Include="bin/DataService.dll">
<publishTime>08/10/2024 15:24:24</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="bin/DataService.pdb">
<publishTime>08/10/2024 15:24:24</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="bin/log4net.dll">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="bin/LonglslandExhibitionCenter.dll">
<publishTime>08/11/2024 20:53:53</publishTime>
<publishTime>08/14/2024 11:25:28</publishTime>
</File>
<File Include="bin/LonglslandExhibitionCenter.pdb">
<publishTime>08/11/2024 20:53:53</publishTime>
<publishTime>08/14/2024 11:25:28</publishTime>
</File>
<File Include="bin/Maticsoft.Common.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="bin/Maticsoft.DBUtility.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:44</publishTime>
</File>
<File Include="bin/Microsoft.Web.Infrastructure.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/MQTTnet.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:44</publishTime>
</File>
<File Include="bin/MySql.Data.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="bin/Newtonsoft.Json.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/csc.exe">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/csc.exe.config">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/csc.rsp">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/csi.exe">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/csi.exe.config">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/csi.rsp">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/Microsoft.Build.Tasks.CodeAnalysis.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/Microsoft.CodeAnalysis.CSharp.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/Microsoft.CodeAnalysis.CSharp.Scripting.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/Microsoft.CodeAnalysis.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/Microsoft.CodeAnalysis.Scripting.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/Microsoft.CodeAnalysis.VisualBasic.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/Microsoft.CSharp.Core.targets">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/Microsoft.DiaSymReader.Native.amd64.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/Microsoft.DiaSymReader.Native.x86.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/Microsoft.Managed.Core.targets">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/Microsoft.VisualBasic.Core.targets">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/Microsoft.Win32.Primitives.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/System.AppContext.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/System.Collections.Immutable.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/System.Console.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/System.Diagnostics.DiagnosticSource.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/System.Diagnostics.FileVersionInfo.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/System.Diagnostics.StackTrace.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/System.Globalization.Calendars.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/System.IO.Compression.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/System.IO.Compression.ZipFile.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/System.IO.FileSystem.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/System.IO.FileSystem.Primitives.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/System.Net.Http.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/System.Net.Sockets.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/System.Reflection.Metadata.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/System.Runtime.InteropServices.RuntimeInformation.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/System.Security.Cryptography.Algorithms.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/System.Security.Cryptography.Encoding.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/System.Security.Cryptography.Primitives.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/System.Security.Cryptography.X509Certificates.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/System.Text.Encoding.CodePages.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/System.Threading.Tasks.Extensions.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/System.ValueTuple.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/System.Xml.ReaderWriter.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/System.Xml.XmlDocument.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/System.Xml.XPath.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/System.Xml.XPath.XDocument.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/vbc.exe">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/vbc.exe.config">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/vbc.rsp">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/VBCSCompiler.exe">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/roslyn/VBCSCompiler.exe.config">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/System.Net.Http.Formatting.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:44</publishTime>
</File>
<File Include="bin/System.Web.Helpers.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:44</publishTime>
</File>
<File Include="bin/System.Web.Http.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:44</publishTime>
</File>
<File Include="bin/System.Web.Http.WebHost.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:44</publishTime>
</File>
<File Include="bin/System.Web.Mvc.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:44</publishTime>
</File>
<File Include="bin/System.Web.Optimization.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:44</publishTime>
</File>
<File Include="bin/System.Web.Razor.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:44</publishTime>
</File>
<File Include="bin/System.Web.WebPages.Deployment.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:44</publishTime>
</File>
<File Include="bin/System.Web.WebPages.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:44</publishTime>
</File>
<File Include="bin/System.Web.WebPages.Razor.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:44</publishTime>
</File>
<File Include="bin/WebGrease.dll">
<publishTime>08/06/2024 16:01:53</publishTime>
<publishTime>08/13/2024 17:44:45</publishTime>
</File>
<File Include="bin/zh-Hans/System.Net.Http.Formatting.resources.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:44</publishTime>
</File>
<File Include="bin/zh-Hans/System.Web.Helpers.resources.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:44</publishTime>
</File>
<File Include="bin/zh-Hans/System.Web.Http.resources.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:44</publishTime>
</File>
<File Include="bin/zh-Hans/System.Web.Http.WebHost.resources.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:44</publishTime>
</File>
<File Include="bin/zh-Hans/System.Web.Mvc.resources.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:44</publishTime>
</File>
<File Include="bin/zh-Hans/System.Web.Optimization.resources.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:44</publishTime>
</File>
<File Include="bin/zh-Hans/System.Web.Razor.resources.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:44</publishTime>
</File>
<File Include="bin/zh-Hans/System.Web.WebPages.Deployment.resources.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:44</publishTime>
</File>
<File Include="bin/zh-Hans/System.Web.WebPages.Razor.resources.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:44</publishTime>
</File>
<File Include="bin/zh-Hans/System.Web.WebPages.resources.dll">
<publishTime>08/06/2024 16:01:52</publishTime>
<publishTime>08/13/2024 17:44:44</publishTime>
</File>
<File Include="Content/bootstrap-theme.css">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Content/bootstrap-theme.css.map">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Content/bootstrap-theme.min.css">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Content/bootstrap-theme.min.css.map">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Content/bootstrap.css">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Content/bootstrap.css.map">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Content/bootstrap.min.css">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Content/bootstrap.min.css.map">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Content/Site.css">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</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>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="fonts/glyphicons-halflings-regular.eot">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="fonts/glyphicons-halflings-regular.svg">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="fonts/glyphicons-halflings-regular.ttf">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="fonts/glyphicons-halflings-regular.woff">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="fonts/glyphicons-halflings-regular.woff2">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Global.asax">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Scripts/bootstrap.js">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Scripts/bootstrap.min.js">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Scripts/jquery-3.4.1.js">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Scripts/jquery-3.4.1.min.js">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Scripts/jquery-3.4.1.min.map">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Scripts/jquery-3.4.1.slim.js">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Scripts/jquery-3.4.1.slim.min.js">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Scripts/jquery-3.4.1.slim.min.map">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Scripts/modernizr-2.8.3.js">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Util/MqttClientService.cs">
<publishTime>02/23/2024 18:15:19</publishTime>
</File>
<File Include="Views/Home/Index.cshtml">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Views/Shared/Error.cshtml">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Views/Shared/_Layout.cshtml">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Views/Web.config">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Views/_ViewStart.cshtml">
<publishTime>08/06/2024 16:01:51</publishTime>
<publishTime>08/13/2024 17:44:43</publishTime>
</File>
<File Include="Web.config">
<publishTime>08/06/2024 16:16:41</publishTime>
<publishTime>08/14/2024 09:50:14</publishTime>
</File>
</ItemGroup>
</Project>

View File

@ -1 +1 @@
25482d9d8c50f9879f8b4dc4ea1f0fcef36c6ff1
3c414877e6233b26aedcbe943e2fe15a5b51469f

View File

@ -204,3 +204,106 @@ E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibition
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\obj\Debug\LonglslandExhibitionCenter.csproj.CopyComplete
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\obj\Debug\LonglslandExhibitionCenter.dll
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\obj\Debug\LonglslandExhibitionCenter.pdb
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\LonglslandExhibitionCenter.dll.config
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\LonglslandExhibitionCenter.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\LonglslandExhibitionCenter.pdb
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\csc.exe
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\csc.exe.config
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\csc.rsp
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\csi.exe
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\csi.exe.config
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\csi.rsp
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.Build.Tasks.CodeAnalysis.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.CodeAnalysis.CSharp.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.CodeAnalysis.CSharp.Scripting.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.CodeAnalysis.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.CodeAnalysis.Scripting.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.CodeAnalysis.VisualBasic.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.CSharp.Core.targets
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.DiaSymReader.Native.amd64.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.DiaSymReader.Native.x86.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.Managed.Core.targets
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.VisualBasic.Core.targets
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.Win32.Primitives.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.AppContext.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Collections.Immutable.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Console.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Diagnostics.DiagnosticSource.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Diagnostics.FileVersionInfo.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Diagnostics.StackTrace.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Globalization.Calendars.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.IO.Compression.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.IO.Compression.ZipFile.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.IO.FileSystem.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.IO.FileSystem.Primitives.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Net.Http.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Net.Sockets.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Reflection.Metadata.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Runtime.InteropServices.RuntimeInformation.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Security.Cryptography.Algorithms.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Security.Cryptography.Encoding.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Security.Cryptography.Primitives.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Security.Cryptography.X509Certificates.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Text.Encoding.CodePages.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Threading.Tasks.Extensions.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.ValueTuple.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Xml.ReaderWriter.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Xml.XmlDocument.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Xml.XPath.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Xml.XPath.XDocument.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\vbc.exe
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\vbc.exe.config
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\vbc.rsp
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\VBCSCompiler.exe
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\VBCSCompiler.exe.config
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Antlr3.Runtime.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\DataService.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Microsoft.Web.Infrastructure.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\MQTTnet.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Newtonsoft.Json.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Net.Http.Formatting.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Helpers.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Http.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Http.WebHost.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Mvc.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Optimization.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Razor.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.WebPages.Deployment.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.WebPages.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.WebPages.Razor.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\WebGrease.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\MySql.Data.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Maticsoft.DBUtility.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Maticsoft.Common.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\DataService.pdb
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\log4net.xml
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\MQTTnet.xml
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Newtonsoft.Json.xml
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Net.Http.Formatting.xml
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Helpers.xml
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Http.xml
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Http.WebHost.xml
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Mvc.xml
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Optimization.xml
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Razor.xml
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.WebPages.xml
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.WebPages.Deployment.xml
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.WebPages.Razor.xml
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Antlr3.Runtime.pdb
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Net.Http.Formatting.resources.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.Helpers.resources.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.Http.resources.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.Http.WebHost.resources.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.Mvc.resources.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.Optimization.resources.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.Razor.resources.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.WebPages.resources.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.WebPages.Deployment.resources.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.WebPages.Razor.resources.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\obj\Debug\LonglslandExhibitionCenter.csproj.AssemblyReference.cache
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\obj\Debug\LonglslandExhibitionCenter.csproj.CoreCompileInputs.cache
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\obj\Debug\LonglslandExhibitionCenter.csproj.CopyComplete
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\obj\Debug\LonglslandExhibitionCenter.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\obj\Debug\LonglslandExhibitionCenter.pdb

View File

@ -1 +1 @@
1240b023f6682313fa4ea6f092db06b44dec9257
e20b1c4d1af1413f48bb2ff86382b72fcdf40e4e

View File

@ -204,3 +204,106 @@ E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibition
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\obj\Release\LonglslandExhibitionCenter.csproj.CopyComplete
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\obj\Release\LonglslandExhibitionCenter.dll
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\obj\Release\LonglslandExhibitionCenter.pdb
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\LonglslandExhibitionCenter.dll.config
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\LonglslandExhibitionCenter.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\LonglslandExhibitionCenter.pdb
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\csc.exe
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\csc.exe.config
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\csc.rsp
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\csi.exe
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\csi.exe.config
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\csi.rsp
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.Build.Tasks.CodeAnalysis.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.CodeAnalysis.CSharp.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.CodeAnalysis.CSharp.Scripting.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.CodeAnalysis.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.CodeAnalysis.Scripting.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.CodeAnalysis.VisualBasic.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.CSharp.Core.targets
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.DiaSymReader.Native.amd64.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.DiaSymReader.Native.x86.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.Managed.Core.targets
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.VisualBasic.Core.targets
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\Microsoft.Win32.Primitives.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.AppContext.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Collections.Immutable.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Console.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Diagnostics.DiagnosticSource.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Diagnostics.FileVersionInfo.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Diagnostics.StackTrace.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Globalization.Calendars.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.IO.Compression.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.IO.Compression.ZipFile.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.IO.FileSystem.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.IO.FileSystem.Primitives.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Net.Http.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Net.Sockets.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Reflection.Metadata.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Runtime.InteropServices.RuntimeInformation.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Security.Cryptography.Algorithms.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Security.Cryptography.Encoding.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Security.Cryptography.Primitives.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Security.Cryptography.X509Certificates.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Text.Encoding.CodePages.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Threading.Tasks.Extensions.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.ValueTuple.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Xml.ReaderWriter.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Xml.XmlDocument.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Xml.XPath.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\System.Xml.XPath.XDocument.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\vbc.exe
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\vbc.exe.config
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\vbc.rsp
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\VBCSCompiler.exe
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\roslyn\VBCSCompiler.exe.config
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Antlr3.Runtime.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\DataService.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Microsoft.Web.Infrastructure.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\MQTTnet.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Newtonsoft.Json.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Net.Http.Formatting.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Helpers.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Http.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Http.WebHost.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Mvc.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Optimization.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Razor.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.WebPages.Deployment.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.WebPages.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.WebPages.Razor.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\WebGrease.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\MySql.Data.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Maticsoft.DBUtility.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Maticsoft.Common.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\DataService.pdb
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\log4net.xml
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\MQTTnet.xml
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Newtonsoft.Json.xml
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Net.Http.Formatting.xml
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Helpers.xml
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Http.xml
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Http.WebHost.xml
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Mvc.xml
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Optimization.xml
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.Razor.xml
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.WebPages.xml
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.WebPages.Deployment.xml
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\System.Web.WebPages.Razor.xml
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Antlr3.Runtime.pdb
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Net.Http.Formatting.resources.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.Helpers.resources.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.Http.resources.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.Http.WebHost.resources.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.Mvc.resources.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.Optimization.resources.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.Razor.resources.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.WebPages.resources.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.WebPages.Deployment.resources.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\bin\zh-Hans\System.Web.WebPages.Razor.resources.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\obj\Release\LonglslandExhibitionCenter.csproj.AssemblyReference.cache
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\obj\Release\LonglslandExhibitionCenter.csproj.CoreCompileInputs.cache
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\obj\Release\LonglslandExhibitionCenter.csproj.CopyComplete
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\obj\Release\LonglslandExhibitionCenter.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\LonglslandExhibitionCenter\obj\Release\LonglslandExhibitionCenter.pdb

View File

@ -550,7 +550,7 @@ namespace Security
}
if (!string.IsNullOrEmpty(name))
{
log.Info("电能-室外箱变:" + msg);
//log.Info("电能-室外箱变:" + msg);
var now = DateTime.Now.AddHours(-1).ToString("yyyy-MM-dd HH:00:00");
var ddate = Convert.ToDateTime(now);
var dtime = DateTime.Now.AddMonths(-1).ToString("yyyyMM");
@ -872,7 +872,7 @@ namespace Security
}
}
if (item.dl.ContainsKey("光照度16位"))
if (item.dl.ContainsKey("光照度16位"))
{
var meteorological_name = "光照度";
var model = list.Where(x => x.MeteorologicalName == meteorological_name).FirstOrDefault();
@ -880,7 +880,7 @@ namespace Security
{
var is_update = false;
decimal? number;
var stringnumber = item.dl["光照度16位"];
var stringnumber = item.dl["光照度16位"];
char delimiters = ':'; // 分隔符
int lastDotIndexs = stringnumber.LastIndexOf(delimiters); // 查找最后一个分隔符的位置
if (lastDotIndexs != -1) // 如果找到分隔符
@ -917,7 +917,7 @@ namespace Security
model.MeteorologicalNumber = name;
model.MeteorologicalName = "光照度";
decimal? number;
var stringnumber = item.dl["光照度16位"];
var stringnumber = item.dl["光照度16位"];
char delimiters = ':'; // 分隔符
int lastDotIndexs = stringnumber.LastIndexOf(delimiters); // 查找最后一个分隔符的位置
if (lastDotIndexs != -1) // 如果找到分隔符

View File

@ -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>zWiyGjDmxLNE5Cmqyjg+lrZoGbCru9yYvYmS3TryJnA=</dsig:DigestValue>
<dsig:DigestValue>cVESGyLcnbCniX0BSs1Pybl1+kduWurzDbuU+fD3kP4=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>

View File

@ -145,7 +145,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>+mUxixAuYLF2AerPbZrwk2YvZ855/Icd3/Wa/1EKKT0=</dsig:DigestValue>
<dsig:DigestValue>uU7KmmhQEnNwdQxHU5xLv6w0ryLzshDrQvsWtpaW6Rc=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>

View File

@ -1 +1 @@
861e78bdb92a2ba9c8cb73fb388e5c3725ba919e
4c5efd15455a61e26655993356716e3cb4ae8d75

View File

@ -133,3 +133,30 @@ E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\obj\Debug\S
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\obj\Debug\Security.csproj.CopyComplete
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\obj\Debug\ServiceSecurity.exe
E:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\obj\Debug\ServiceSecurity.pdb
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\ServiceSecurity.exe.config
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\ServiceSecurity.exe.manifest
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\ServiceSecurity.application
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\ServiceSecurity.exe
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\ServiceSecurity.pdb
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\DataService.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\HslCommunication.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\LitJSON.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\log4net.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\Newtonsoft.Json.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\MySql.Data.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\Maticsoft.DBUtility.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\Maticsoft.Common.dll
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\DataService.pdb
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\HslCommunication.xml
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\log4net.xml
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\bin\Debug\Newtonsoft.Json.xml
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\obj\Debug\Security.csproj.AssemblyReference.cache
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\obj\Debug\Security.csproj.SuggestedBindingRedirects.cache
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\obj\Debug\Security.ProjectInstaller.resources
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\obj\Debug\Security.csproj.GenerateResource.cache
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\obj\Debug\Security.csproj.CoreCompileInputs.cache
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\obj\Debug\ServiceSecurity.exe.manifest
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\obj\Debug\ServiceSecurity.application
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\obj\Debug\Security.csproj.CopyComplete
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\obj\Debug\ServiceSecurity.exe
F:\项目\长岛展览馆\项目\LonglslandExhibitionCenter\Security\obj\Debug\ServiceSecurity.pdb

View File

@ -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>zWiyGjDmxLNE5Cmqyjg+lrZoGbCru9yYvYmS3TryJnA=</dsig:DigestValue>
<dsig:DigestValue>cVESGyLcnbCniX0BSs1Pybl1+kduWurzDbuU+fD3kP4=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>

View File

@ -145,7 +145,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>+mUxixAuYLF2AerPbZrwk2YvZ855/Icd3/Wa/1EKKT0=</dsig:DigestValue>
<dsig:DigestValue>uU7KmmhQEnNwdQxHU5xLv6w0ryLzshDrQvsWtpaW6Rc=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>