# 1 基于对象跨表查询# 正向查询instance.外键.字段instance.外键.all()# 反向查询instance.表名小写instance.表名小写_set.all()# 2 基于双下划线跨表查询qs.values('外键__字段')