函数引用时必须声明别名
var house models.House
index,err := house.HouseGetIndex()
直接调用会报错
index,err := models.House.HouseGetIndex()
错误:
not enough arguments in call to models.House.HouseGetIndex less... (Ctrl+F1)
Inspection info: This inspection checks function calls.