/// <summary>
 ///
 /// </summary>
 public SubformCloudMinerProductionOrder()
 {
     InitializeComponent();
     CloudMinerProductionModelSend = new CloudMinerProductionModelSend();
     _dataPagingModelSend          = new DataPagingModelSend();
     CloudMinerProductionModelSend.DataPagingModel = _dataPagingModelSend;
 }
        public List <CloudMinerProductionModelGet> QueryCloudMinerProductionRecord(CloudMinerProductionModelSend cloudMinerProductionModelSend, out DataPagingModelGet dataPagingModelGet)
        {
            HeadModelGet <List <CloudMinerProductionModelGet> > headModelGet = BwHttpApiAccess <HeadModelGet <List <CloudMinerProductionModelGet> > > .PostMsg(
                ApiAddress.QueryCloudMinerProductionRecord, cloudMinerProductionModelSend);

            dataPagingModelGet = headModelGet.DataPagingResult ?? new DataPagingModelGet();
            return(headModelGet.Code == 0 ? headModelGet.Data : null);
        }