|  |  | 
 |  |  | import com.doumee.core.utils.DateUtil; | 
 |  |  | import com.doumee.dao.business.model.Goodsorder; | 
 |  |  | import com.doumee.service.business.GoodsorderService; | 
 |  |  | import com.doumee.service.business.MemberRidesService; | 
 |  |  | import com.doumee.service.business.WxBillService; | 
 |  |  | import lombok.extern.slf4j.Slf4j; | 
 |  |  | import org.springframework.beans.factory.annotation.Autowired; | 
 |  |  | 
 |  |  |  | 
 |  |  |     @Autowired | 
 |  |  |     private GoodsorderService goodsorderService; | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     @Autowired | 
 |  |  |     private MemberRidesService memberRidesService; | 
 |  |  |     /** | 
 |  |  |      * @throws Exception | 
 |  |  |      */ | 
 |  |  | 
 |  |  |         log.info("=====================结束每天自动结算======================="); | 
 |  |  |  | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 定时刷新骑行中的数充值未开锁失败 | 
 |  |  |      * 30 秒刷新一次 | 
 |  |  |      * @throws Exception | 
 |  |  |      */ | 
 |  |  |     @Scheduled(cron = "0/30 * * * * ? ") | 
 |  |  |     public void autoRefreshLockStatus() throws Exception { | 
 |  |  |         log.info("=====================开始每天自动结算======================="); | 
 |  |  |         memberRidesService.autoRefreshLockStatus(); | 
 |  |  |         log.info("=====================结束每天自动结算======================="); | 
 |  |  |  | 
 |  |  |     } | 
 |  |  | } |