public CommonResult <DBCollection <WFFinsEntity> > GetFlowsByServiceIdo(WFMonitorSearchModel pageEntity)
        {
            if (pageEntity == null)
            {
                pageEntity = new WFMonitorSearchModel();
            }
            pageEntity.PageSize = Math.Min(pageEntity.PageSize, 100);

            return(_workFlowMonitor.GetRuningData(pageEntity));
        }
Exemplo n.º 2
0
        public void GetFlowsByServiceIdoTest()
        {
            WFMonitorSearchModel en = new WFMonitorSearchModel();

            en.DataId = "10001Q4QZCBR50000A01";
            en.Status = -999;
            var res = this.service.GetFlowsByServiceIdo(en);

            Console.WriteLine(this.Json.Serialize(res));
        }