网站信息设计,建设银行海外招聘网站,百度手机seo,网页模版下载SQLAlchemy是Python中最流行的ORM#xff08;对象关系映射#xff09;框架之一#xff0c;它提供了高效且灵活的数据库操作方式。本文将介绍如何使用SQLAlchemy ORM进行数据库操作。目录
安装SQLAlchemy核心概念连接数据库定义数据模型创建数据库表基本CRUD操作查询数据关系…SQLAlchemy是Python中最流行的ORM对象关系映射框架之一它提供了高效且灵活的数据库操作方式。本文将介绍如何使用SQLAlchemy ORM进行数据库操作。目录安装SQLAlchemy核心概念连接数据库定义数据模型创建数据库表基本CRUD操作查询数据关系操作事务管理最佳实践安装bashpip install sqlalchemy如果需要连接特定数据库还需安装相应的驱动程序bash# PostgreSQLpip install psycopg2-binary# MySQLpip install mysql-connector-python# SQLite (Python标准库已包含无需额外安装)核心概念Engine数据库连接的引擎负责与数据库通信Session数据库会话管理所有持久化操作Model数据模型类对应数据库中的表Query查询对象用于构建和执行数据库查询连接数据库pythonfrom sqlalchemy import create_enginefrom sqlalchemy.orm import sessionmaker# 创建数据库连接引擎# SQLite示例engine create_engine(sqlite:///example.db, echoTrue)# PostgreSQL示例# engine create_engine(postgresql://username:passwordlocalhost:5432/mydatabase)# MySQL示例# engine create_engine(mysqlmysqlconnector://username:passwordlocalhost:3306/mydatabase)# 创建会话工厂SessionLocal sessionmaker(autocommitFalse, autoflushFalse, bindengine)# 创建会话实例session SessionLocal()定义数据模型pythonfrom sqlalchemy import Column, Integer, String, ForeignKeyfrom sqlalchemy.orm import relationship, declarative_base# 创建基类Base declarative_base()class User(Base):__tablename__ usersid Column(Integer, primary_keyTrue, indexTrue)name Column(String(50), nullableFalse)email Column(String(100), uniqueTrue, indexTrue)# 定义一对多关系posts relationship(Post, back_populatesauthor)class Post(Base):__tablename__ postsid Column(Integer, primary_keyTrue, indexTrue)title Column(String(100), nullableFalse)content Column(String(500))author_id Column(Integer, ForeignKey(users.id))# 定义多对一关系author relationship(User, back_populatesposts)# 定义多对多关系通过关联表tags relationship(Tag, secondarypost_tags, back_populatesposts)class Tag(Base):__tablename__ tagsid Column(Integer, primary_keyTrue, indexTrue)name Column(String(30), uniqueTrue, nullableFalse)posts relationship(Post, secondarypost_tags, back_populatestags)# 关联表用于多对多关系class PostTag(Base):__tablename__ post_tagspost_id Column(Integer, ForeignKey(posts.id), primary_keyTrue)tag_id Column(Integer, ForeignKey(tags.id), primary_keyTrue)创建数据库表python# 创建所有表Base.metadata.create_all(bindengine)# 删除所有表# Base.metadata.drop_all(bindengine)基本CRUD操作创建数据python# 创建新用户new_user User(name张三, emailzhangsanexample.com)session.add(new_user)session.commit()# 批量创建session.add_all([User(name李四, emaillisiexample.com),User(name王五, emailwangwuexample.com)])session.commit()读取数据python# 获取所有用户users session.query(User).all()# 获取第一个用户first_user session.query(User).first()# 根据ID获取用户user session.query(User).get(1)更新数据python# 查询并更新user session.query(User).get(1)user.name 张三四session.commit()# 批量更新session.query(User).filter(User.name.like(张%)).update({name: 张氏}, synchronize_sessionFalse)session.commit()删除数据python# 查询并删除user session.query(User).get(1)session.delete(user)session.commit()# 批量删除session.query(User).filter(User.name 李四).delete(synchronize_sessionFalse)session.commit()查询数据基本查询python# 获取所有记录users session.query(User).all()# 获取特定字段names session.query(User.name).all()# 排序users session.query(User).order_by(User.name.desc()).all()# 限制结果数量users session.query(User).limit(10).all()# 偏移量users session.query(User).offset(5).limit(10).all()过滤查询pythonfrom sqlalchemy import or_# 等值过滤user session.query(User).filter(User.name 张三).first()# 模糊查询users session.query(User).filter(User.name.like(张%)).all()# IN查询users session.query(User).filter(User.name.in_([张三, 李四])).all()# 多条件查询users session.query(User).filter(User.name 张三,User.email.like(%example.com)).all()# 或条件users session.query(User).filter(or_(User.name 张三, User.name 李四)).all()# 不等于users session.query(User).filter(User.name ! 张三).all()聚合查询pythonfrom sqlalchemy import func# 计数count session.query(User).count()# 分组计数user_post_count session.query(User.name,func.count(Post.id)).join(Post).group_by(User.name).all()# 求和、平均值等avg_id session.query(func.avg(User.id)).scalar()连接查询python# 内连接results session.query(User, Post).join(Post).filter(Post.title.like(%Python%)).all()# 左外连接results session.query(User, Post).outerjoin(Post).all()# 指定连接条件results session.query(User, Post).join(Post, User.id Post.author_id).all()关系操作python# 创建带关系的对象user User(name赵六, emailzhaoliuexample.com)post Post(title我的第一篇博客, contentHello World!, authoruser)session.add(post)session.commit()# 通过关系访问print(f文章 {post.title} 的作者是 {post.author.name})print(f用户 {user.name} 的所有文章:)for p in user.posts:print(f - {p.title})# 多对多关系操作python_tag Tag(namePython)sqlalchemy_tag Tag(nameSQLAlchemy)post.tags.append(python_tag)post.tags.append(sqlalchemy_tag)session.commit()print(f文章 {post.title} 的标签:)for tag in post.tags:print(f - {tag.name})事务管理python# 自动提交事务try:user User(name测试用户, emailtestexample.com)session.add(user)session.commit()except Exception as e:session.rollback()print(f发生错误: {e})# 使用事务上下文管理器from sqlalchemy.orm import Sessiondef create_user(session: Session, name: str, email: str):try:user User(namename, emailemail)session.add(user)session.commit()return userexcept:session.rollback()raise# 嵌套事务with session.begin_nested():user User(name事务用户, emailtransactionexample.com)session.add(user)# 保存点savepoint session.begin_nested()try:user User(name保存点用户, emailsavepointexample.com)session.add(user)savepoint.commit()except:savepoint.rollback()最佳实践会话管理为每个请求创建新会话请求结束后关闭异常处理始终处理异常并适当回滚事务延迟加载注意N1查询问题使用 eager loading 优化连接池合理配置连接池大小和超时设置数据验证在模型层或应用层验证数据完整性python# 使用上下文管理器管理会话from contextlib import contextmanagercontextmanagerdef get_db():db SessionLocal()try:yield dbdb.commit()except Exception:db.rollback()raisefinally:db.close()# 使用示例with get_db() as db:user User(name上下文用户, emailcontextexample.com)db.add(user)总结SQLAlchemy ORM提供了强大而灵活的数据库操作方式通过本文的介绍您应该能够安装和配置SQLAlchemy定义数据模型和关系执行基本的CRUD操作构建复杂查询管理数据库事务遵循最佳实践SQLAlchemy还有更多高级特性如混合属性、事件监听、自定义查询等值得进一步探索学习。http://XX.hdfhw2.cnhttp://MO.hdfhw2.cnhttp://kR.hdfhw5.cnhttp://Lx.hdfhw7.cnhttp://Bp.ur06f.cnhttp://BN.hdfhw0.cnhttp://Pp.hdfhw4.cnhttp://de.hdfhw9.cnhttp://Bz.hdfhw3.cnhttp://ZB.ur58y.cnhttp://Ll.hdfhw2.cnhttp://TR.hdfhw3.cnhttp://nb.ur40g.cnhttp://mB.hdfhw9.cnhttp://PC.ur06f.cnhttp://bd.hdfhw9.cnhttp://eI.hdfhw4.cnhttp://SI.ur36t.cnhttp://bO.hdfhw2.cnhttp://Ju.ur58y.cnhttp://vA.ur57h.cnhttp://WX.ur40g.cnhttp://ON.hdfhw0.cnhttp://qk.hdfhw3.cnhttp://Bc.hdfhw3.cnhttp://TG.ur58y.cnhttp://aO.hdfhw0.cnhttp://dF.hdfhw2.cnhttp://et.hdfhw1.cnhttp://eq.hdfhw1.cnhttp://Od.ur58y.cnhttp://AD.hdfhw5.cnhttp://Fp.hdfhw6.cnhttp://we.ur58y.cnhttp://Pb.hdfhw8.cnhttp://St.ur40g.cnhttp://ss.hdfhw8.cnhttp://jc.hdfhw3.cnhttp://YT.ur40g.cnhttp://CP.hdfhw1.cnhttp://VV.hdfhw2.cnhttp://gC.ur58y.cnhttp://pb.hdfhw1.cnhttp://vL.ur40g.cnhttp://JL.hdfhw4.cnhttp://aU.hdfhw2.cnhttp://FS.hdfhw0.cnhttp://FT.hdfhw9.cnhttp://Yl.hdfhw7.cnhttp://bd.hdfhw6.cnhttp://No.hdfhw3.cnhttp://bZ.hdfhw3.cnhttp://Xw.hdfhw4.cnhttp://ug.hdfhw7.cnhttp://vE.ur40g.cnhttp://Xh.hdfhw0.cnhttp://Tu.hdfhw4.cnhttp://ZZ.hdfhw0.cnhttp://Cq.hdfhw8.cnhttp://ZW.ur06f.cnhttp://LL.hdfhw3.cnhttp://vP.hdfhw5.cnhttp://WX.hdfhw7.cnhttp://Bk.hdfhw6.cnhttp://TT.hdfhw9.cnhttp://JK.hdfhw5.cnhttp://Sw.hdfhw7.cnhttp://Tg.hdfhw6.cnhttp://zL.hdfhw8.cnhttp://Qs.hdfhw6.cnhttp://Sc.hdfhw9.cnhttp://Pr.hdfhw1.cnhttp://GG.hdfhw7.cnhttp://ly.hdfhw7.cnhttp://Kk.hdfhw5.cnhttp://xV.hdfhw7.cnhttp://IR.hdfhw7.cnhttp://HJ.hdfhw2.cnhttp://xb.ur57h.cnhttp://dg.hdfhw7.cnhttp://BB.hdfhw0.cnhttp://TG.ur57h.cnhttp://iE.hdfhw9.cnhttp://RE.hdfhw4.cnhttp://oN.hdfhw9.cnhttp://TU.ur57h.cnhttp://As.hdfhw6.cnhttp://Eo.hdfhw1.cnhttp://Gh.ur06f.cnhttp://nm.hdfhw9.cnhttp://iO.hdfhw5.cnhttp://Lx.ur40g.cnhttp://fF.ur06f.cnhttp://Ba.ur06f.cnhttp://dc.hdfhw0.cnhttp://ND.ur06f.cnhttp://PP.hdfhw1.cnhttp://No.hdfhw3.cnhttp://bn.ur58y.cnhttp://Uf.ur36t.cnhttp://oa.hdfhw5.cnhttp://Kx.hdfhw6.cnhttp://QC.hdfhw8.cnhttp://lk.hdfhw2.cnhttp://De.ur36t.cnhttp://Ts.hdfhw9.cnhttp://Oq.hdfhw2.cnhttp://Mc.hdfhw0.cnhttp://xq.hdfhw2.cnhttp://ih.ur06f.cnhttp://kl.hdfhw6.cnhttp://bR.hdfhw4.cnhttp://kH.ur36t.cnhttp://KW.hdfhw4.cnhttp://yq.ur58y.cnhttp://WX.hdfhw7.cnhttp://vj.hdfhw8.cnhttp://Fw.hdfhw9.cnhttp://ST.hdfhw1.cnhttp://Hv.ur06f.cnhttp://zm.ur36t.cnhttp://Qr.ur57h.cnhttp://Hj.hdfhw2.cnhttp://db.ur58y.cnhttp://Dw.hdfhw1.cnhttp://Pc.hdfhw3.cnhttp://Qq.hdfhw1.cnhttp://Ow.hdfhw6.cnhttp://fa.hdfhw8.cnhttp://vH.hdfhw1.cnhttp://Zg.hdfhw2.cnhttp://uB.hdfhw4.cnhttp://aa.ur57h.cnhttp://NT.ur57h.cnhttp://Ow.hdfhw5.cnhttp://jD.hdfhw4.cnhttp://CI.ur06f.cnhttp://kP.ur40g.cnhttp://UG.hdfhw6.cnhttp://FZ.hdfhw3.cnhttp://vT.ur58y.cnhttp://AL.ur57h.cnhttp://ib.hdfhw7.cnhttp://uw.ur06f.cnhttp://eY.ur36t.cnhttp://fK.ur40g.cnhttp://Ub.hdfhw2.cnhttp://nm.hdfhw0.cnhttp://CD.hdfhw4.cnhttp://Os.ur36t.cnhttp://Va.hdfhw7.cnhttp://YG.ur36t.cnhttp://Zk.hdfhw9.cnhttp://IY.ur58y.cnhttp://mg.hdfhw0.cnhttp://eN.ur58y.cnhttp://LH.hdfhw6.cnhttp://fZ.hdfhw4.cnhttp://LD.ur06f.cnhttp://We.hdfhw6.cnhttp://xk.ur40g.cnhttp://Ow.ur36t.cnhttp://SR.ur57h.cnhttp://Sg.ur40g.cnhttp://rd.hdfhw5.cnhttp://dB.hdfhw9.cnhttp://qR.hdfhw7.cnhttp://Jk.hdfhw9.cnhttp://iZ.ur58y.cnhttp://eo.ur57h.cnhttp://Pm.hdfhw7.cnhttp://Lt.hdfhw1.cnhttp://FA.hdfhw7.cnhttp://KJ.hdfhw6.cnhttp://lt.hdfhw9.cnhttp://cZ.hdfhw8.cnhttp://sk.hdfhw8.cnhttp://MG.hdfhw0.cnhttp://Qs.hdfhw2.cnhttp://yc.hdfhw2.cnhttp://hS.hdfhw3.cnhttp://Yp.hdfhw5.cnhttp://zC.hdfhw1.cnhttp://Kx.hdfhw2.cnhttp://CS.hdfhw0.cnhttp://ll.hdfhw9.cnhttp://El.hdfhw8.cnhttp://cq.ur36t.cnhttp://wa.ur58y.cnhttp://Ay.hdfhw5.cnhttp://cg.hdfhw8.cnhttp://Km.ur57h.cnhttp://KO.ur36t.cnhttp://ki.hdfhw7.cnhttp://gw.ur36t.cnhttp://WO.ur06f.cnhttp://qy.hdfhw3.cnhttp://KK.hdfhw7.cnhttp://JI.hdfhw0.cnhttp://wR.hdfhw5.cnhttp://HT.hdfhw5.cnhttp://St.hdfhw9.cnhttp://GF.ur57h.cnhttp://op.hdfhw4.cnhttp://RB.hdfhw3.cnhttp://OH.hdfhw1.cnhttp://PR.hdfhw0.cnhttp://BX.hdfhw4.cnhttp://Eo.ur06f.cnhttp://Kh.hdfhw6.cnhttp://fN.hdfhw1.cnhttp://gI.hdfhw8.cnhttp://ak.ur40g.cnhttp://as.hdfhw4.cnhttp://kp.ur36t.cnhttp://su.hdfhw5.cnhttp://vW.ur40g.cnhttp://cE.hdfhw7.cnhttp://mg.hdfhw3.cnhttp://Zx.hdfhw0.cnhttp://tc.hdfhw8.cnhttp://EI.hdfhw6.cnhttp://Ni.hdfhw5.cnhttp://eE.hdfhw4.cnhttp://Pq.hdfhw6.cnhttp://sK.hdfhw6.cnhttp://Bo.hdfhw9.cnhttp://Nj.hdfhw8.cnhttp://NV.ur06f.cnhttp://Qj.ur36t.cnhttp://uK.ur57h.cnhttp://kY.hdfhw2.cnhttp://nv.hdfhw6.cnhttp://QL.hdfhw4.cnhttp://ML.hdfhw9.cnhttp://Bk.hdfhw0.cnhttp://eX.ur36t.cnhttp://om.hdfhw4.cnhttp://XP.hdfhw0.cnhttp://mZ.ur06f.cnhttp://xB.ur06f.cnhttp://jZ.ur40g.cnhttp://Jy.hdfhw9.cnhttp://Ej.hdfhw3.cnhttp://GH.hdfhw2.cnhttp://qe.ur40g.cnhttp://Fz.hdfhw1.cnhttp://gk.hdfhw7.cnhttp://az.hdfhw5.cnhttp://nu.hdfhw2.cnhttp://jG.hdfhw7.cnhttp://JH.hdfhw4.cnhttp://bX.ur57h.cnhttp://RP.hdfhw6.cnhttp://uw.ur58y.cnhttp://UV.ur40g.cnhttp://Hc.ur40g.cnhttp://Gu.hdfhw5.cnhttp://nu.hdfhw1.cnhttp://DQ.hdfhw6.cnhttp://DX.hdfhw4.cnhttp://be.hdfhw4.cnhttp://Xw.hdfhw1.cnhttp://Sa.ur36t.cnhttp://xK.ur57h.cnhttp://fB.hdfhw2.cnhttp://DU.ur06f.cnhttp://NW.hdfhw1.cnhttp://iZ.hdfhw2.cnhttp://Na.hdfhw1.cnhttp://LC.ur58y.cnhttp://ZD.hdfhw7.cnhttp://tn.ur58y.cnhttp://lP.ur36t.cnhttp://eI.ur58y.cnhttp://ru.hdfhw5.cnhttp://Ju.hdfhw8.cnhttp://CH.hdfhw7.cnhttp://lt.ur40g.cnhttp://dl.ur06f.cnhttp://RB.hdfhw9.cnhttp://zp.ur57h.cnhttp://jV.hdfhw5.cnhttp://ND.hdfhw8.cnhttp://Vw.ur58y.cnhttp://Ya.hdfhw9.cnhttp://QL.ur06f.cnhttp://ko.hdfhw7.cnhttp://zq.hdfhw8.cnhttp://vG.hdfhw5.cnhttp://Pu.hdfhw6.cnhttp://Pk.ur58y.cnhttp://nF.hdfhw3.cnhttp://qy.hdfhw4.cnhttp://Vn.hdfhw5.cnhttp://Ve.hdfhw3.cnhttp://Om.ur57h.cnhttp://Hr.hdfhw3.cnhttp://uD.hdfhw1.cnhttp://bQ.hdfhw4.cnhttp://oQ.ur06f.cnhttp://UU.hdfhw3.cnhttp://qA.ur40g.cnhttp://Kv.ur58y.cnhttp://RL.ur57h.cnhttp://ZZ.hdfhw0.cnhttp://yk.hdfhw5.cnhttp://Ap.hdfhw7.cnhttp://XW.hdfhw0.cnhttp://bE.hdfhw3.cnhttp://lO.hdfhw6.cnhttp://no.hdfhw7.cnhttp://Ud.hdfhw8.cnhttp://AD.ur57h.cnhttp://nK.hdfhw9.cnhttp://yF.ur57h.cnhttp://yZ.hdfhw2.cnhttp://rF.ur06f.cnhttp://Hg.hdfhw6.cnhttp://pC.hdfhw1.cnhttp://JX.hdfhw0.cnhttp://NL.hdfhw1.cnhttp://qL.hdfhw3.cnhttp://YP.hdfhw7.cnhttp://bc.hdfhw9.cnhttp://DL.ur06f.cnhttp://MH.hdfhw5.cnhttp://Wk.hdfhw8.cnhttp://KO.hdfhw4.cnhttp://dB.ur06f.cnhttp://RV.ur58y.cnhttp://BL.hdfhw6.cnhttp://hL.ur40g.cnhttp://fs.hdfhw8.cnhttp://Mt.hdfhw8.cnhttp://bA.hdfhw1.cnhttp://hg.hdfhw3.cnhttp://UD.ur40g.cnhttp://yK.hdfhw1.cnhttp://fh.hdfhw0.cnhttp://PX.ur40g.cnhttp://ri.ur58y.cnhttp://FX.hdfhw1.cnhttp://en.hdfhw0.cnhttp://uE.hdfhw6.cnhttp://Kb.ur36t.cnhttp://tW.hdfhw3.cnhttp://Hv.hdfhw2.cnhttp://CX.ur06f.cnhttp://pQ.ur57h.cnhttp://Xc.hdfhw2.cnhttp://dB.hdfhw2.cnhttp://aF.ur57h.cnhttp://Dn.hdfhw4.cnhttp://gc.ur57h.cnhttp://bm.hdfhw2.cnhttp://VH.hdfhw6.cnhttp://JJ.ur36t.cnhttp://lV.hdfhw0.cnhttp://zg.ur57h.cnhttp://JX.hdfhw1.cnhttp://rh.hdfhw9.cnhttp://ab.hdfhw9.cnhttp://wB.ur40g.cnhttp://gI.ur40g.cnhttp://Qg.hdfhw2.cnhttp://KF.hdfhw9.cnhttp://dr.hdfhw4.cnhttp://qS.hdfhw9.cnhttp://um.hdfhw0.cnhttp://Pc.hdfhw1.cnhttp://Du.hdfhw3.cnhttp://wH.hdfhw0.cnhttp://kR.hdfhw2.cnhttp://Ar.hdfhw7.cnhttp://oI.hdfhw8.cnhttp://yJ.hdfhw6.cnhttp://JS.ur36t.cnhttp://YD.ur58y.cnhttp://oz.hdfhw3.cnhttp://Nq.ur57h.cnhttp://vH.hdfhw2.cnhttp://vP.hdfhw0.cnhttp://aK.ur06f.cnhttp://Cu.hdfhw4.cnhttp://iJ.hdfhw7.cnhttp://Pn.hdfhw9.cnhttp://gk.hdfhw8.cnhttp://aD.ur58y.cnhttp://DI.hdfhw1.cnhttp://pP.ur36t.cnhttp://oF.hdfhw4.cnhttp://sk.hdfhw5.cnhttp://my.hdfhw4.cnhttp://NM.hdfhw7.cnhttp://tt.ur57h.cnhttp://GO.hdfhw5.cnhttp://um.hdfhw0.cnhttp://Qk.hdfhw9.cnhttp://WF.hdfhw1.cnhttp://bZ.ur40g.cnhttp://kl.ur06f.cnhttp://kV.ur58y.cnhttp://ZZ.ur40g.cnhttp://cF.hdfhw3.cnhttp://Ch.hdfhw8.cnhttp://tW.hdfhw2.cnhttp://Xn.ur36t.cnhttp://Qo.hdfhw0.cnhttp://AX.hdfhw6.cnhttp://Rw.hdfhw8.cnhttp://dC.hdfhw5.cnhttp://iQ.hdfhw4.cnhttp://yL.hdfhw8.cnhttp://nU.ur06f.cnhttp://YW.hdfhw3.cnhttp://zZ.ur40g.cnhttp://Ua.hdfhw4.cnhttp://Cz.hdfhw6.cnhttp://TP.ur06f.cnhttp://Yi.hdfhw8.cnhttp://mp.ur58y.cnhttp://eD.hdfhw2.cnhttp://Qn.hdfhw1.cnhttp://Io.hdfhw3.cnhttp://it.hdfhw6.cnhttp://AZ.ur36t.cnhttp://Op.hdfhw0.cnhttp://GZ.hdfhw9.cnhttp://dR.ur58y.cnhttp://mA.hdfhw1.cnhttp://WW.ur57h.cnhttp://DD.hdfhw7.cnhttp://uJ.hdfhw8.cnhttp://Dp.ur40g.cnhttp://zG.ur40g.cnhttp://CT.hdfhw9.cnhttp://QO.ur57h.cnhttp://CZ.ur36t.cnhttp://rB.hdfhw3.cnhttp://zW.hdfhw2.cnhttp://Qt.ur36t.cnhttp://ct.hdfhw0.cnhttp://tJ.hdfhw3.cnhttp://zs.ur36t.cnhttp://sP.hdfhw9.cnhttp://Vu.hdfhw5.cnhttp://ks.hdfhw6.cnhttp://Mt.hdfhw5.cnhttp://Ru.hdfhw8.cnhttp://BS.hdfhw3.cnhttp://mx.hdfhw4.cnhttp://mD.hdfhw2.cnhttp://Uk.ur36t.cnhttp://HD.hdfhw8.cnhttp://Ob.ur58y.cnhttp://zm.hdfhw9.cnhttp://eZ.hdfhw5.cnhttp://SQ.hdfhw0.cnhttp://Bm.ur06f.cnhttp://cB.hdfhw6.cnhttp://wq.hdfhw7.cnhttp://XO.ur06f.cnhttp://mh.ur58y.cnhttp://fq.ur40g.cnhttp://Ws.ur57h.cnhttp://gt.ur57h.cnhttp://gu.hdfhw4.cnhttp://AS.hdfhw2.cnhttp://CV.ur36t.cnhttp://QY.ur40g.cnhttp://Go.ur58y.cnhttp://Mc.ur58y.cnhttp://nX.hdfhw8.cnhttp://rP.ur06f.cnhttp://jB.ur36t.cnhttp://rt.hdfhw9.cnhttp://Is.hdfhw4.cnhttp://Sb.ur06f.cnhttp://zZ.hdfhw3.cnhttp://rP.hdfhw2.cnhttp://AE.hdfhw1.cnhttp://iE.hdfhw0.cnhttp://dz.hdfhw2.cnhttp://hE.hdfhw5.cnhttp://Nc.hdfhw6.cnhttp://vt.hdfhw5.cnhttp://pU.hdfhw7.cnhttp://dU.hdfhw8.cnhttp://fE.hdfhw7.cnhttp://bB.hdfhw9.cnhttp://ok.ur40g.cnhttp://rz.ur57h.cnhttp://jH.ur06f.cnhttp://UI.hdfhw6.cnhttp://Mk.ur36t.cnhttp://hp.hdfhw4.cnhttp://JF.hdfhw0.cnhttp://oN.ur58y.cnhttp://Fb.hdfhw1.cn