private var personDaoImpl: SysPersonDaoImpl? = null一般是申明的时候指定了可以为空 但实际为null时,kotlin无法智能转换 ,修改成:
private lateinit var personDaoImpl: SysPersonDaoImpl