get是Model类里的,find是Query类里的,其实可以看看Model里get的实现,最终都是调用的是find
/**
* 查找单条记录
* access public
* @param mixed $data 主键值或者查询条件(闭包)
* @param array|string $with 关联预查询
* @param bool $cache 是否缓存
* return static
* @throws exception\DbException
*/
public static function get($data = null, $with = [], $cache = false)
{
$query = static::parseQuery($data, $with, $cache);
return $query->find($data);
}