This commit is contained in:
parent
3fec4b8a8a
commit
253f301fcf
|
@ -162,7 +162,7 @@
|
||||||
</site>
|
</site>
|
||||||
<site name="WebApi" id="2">
|
<site name="WebApi" id="2">
|
||||||
<application path="/" applicationPool="Clr4IntegratedAppPool">
|
<application path="/" applicationPool="Clr4IntegratedAppPool">
|
||||||
<virtualDirectory path="/" physicalPath="E:\湛江巴斯夫\Basf_TCC7\HJGL\WebApi" />
|
<virtualDirectory path="/" physicalPath="E:\MyProject\ZJ_BSF\Basf_TCC7\HJGL\WebApi" />
|
||||||
</application>
|
</application>
|
||||||
<bindings>
|
<bindings>
|
||||||
<binding protocol="http" bindingInformation="*:3862:localhost" />
|
<binding protocol="http" bindingInformation="*:3862:localhost" />
|
||||||
|
@ -234,7 +234,7 @@
|
||||||
</site>
|
</site>
|
||||||
<site name="FineUIPro.Web(8)" id="11">
|
<site name="FineUIPro.Web(8)" id="11">
|
||||||
<application path="/" applicationPool="Clr4IntegratedAppPool">
|
<application path="/" applicationPool="Clr4IntegratedAppPool">
|
||||||
<virtualDirectory path="/" physicalPath="E:\湛江巴斯夫\Basf_TCC7\HJGL\FineUIPro.Web" />
|
<virtualDirectory path="/" physicalPath="E:\MyProject\ZJ_BSF\Basf_TCC7\HJGL\FineUIPro.Web" />
|
||||||
</application>
|
</application>
|
||||||
<bindings>
|
<bindings>
|
||||||
<binding protocol="http" bindingInformation="*:50794:localhost" />
|
<binding protocol="http" bindingInformation="*:50794:localhost" />
|
||||||
|
|
Binary file not shown.
|
@ -115,15 +115,18 @@
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
int rnum = Funs.GetRandomNum(1, jotList.Count());
|
if (jotList.Count() > 0)
|
||||||
int j = 1;
|
|
||||||
foreach (var g in jotList)
|
|
||||||
{
|
{
|
||||||
if (rnum == j)
|
int rnum = Funs.GetRandomNum(1, jotList.Count());
|
||||||
|
int j = 1;
|
||||||
|
foreach (var g in jotList)
|
||||||
{
|
{
|
||||||
BLL.Batch_PointBatchItemService.UpdatePointBatchItem(g.PointBatchItemId, "1", System.DateTime.Now, null);
|
if (rnum == j)
|
||||||
|
{
|
||||||
|
BLL.Batch_PointBatchItemService.UpdatePointBatchItem(g.PointBatchItemId, "1", System.DateTime.Now, null);
|
||||||
|
}
|
||||||
|
j++;
|
||||||
}
|
}
|
||||||
j++;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue