public override void Execute()
 {
     try
     {
         if (positionDal.HasEmptyAutomaticDemolitionPlatePosition())
         {
             RestClient rest = new RestClient();
             rest.AutoCreateMoveBill();
         }
     }
     catch (Exception ex)
     {
         Logger.Error("AutoCreateMoveBillRequestProcess 出错,原因:" + ex.Message + "/n" + ex.StackTrace);
     }
 }