package com.doumee.lib_coremodel.base; 
 | 
  
 | 
import android.app.Service; 
 | 
  
 | 
  
 | 
/** 
 | 
 * MVVMFrame 框架基于Google官方的 JetPack 构建,在使用MVVMFrame时,需遵循一些规范: 
 | 
 * 
 | 
 * 如果您继承使用了BaseService或其子类,你需要参照如下方式添加@AndroidEntryPoint注解 
 | 
 * 
 | 
 * @example Service 
 | 
 * //------------------------- 
 | 
 *    @AndroidEntryPoint 
 | 
 *    public class YourService extends BaseService { 
 | 
 * 
 | 
 *    } 
 | 
 * //------------------------- 
 | 
 * 
 | 
 * @author <a href="mailto:jenly1314@gmail.com">Jenly</a> 
 | 
 */ 
 | 
public abstract class BaseService extends Service { 
 | 
  
 | 
} 
 |