create_table.py 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. '''
  2. 定义表的结构,并在数据库中创建对应的数据表
  3. '''
  4. __author__ = 'lmstack'
  5. from sqlalchemy.ext.declarative import declarative_base
  6. from sqlalchemy import Column, String, create_engine, Integer, DateTime, BigInteger, FLOAT, TIMESTAMP, func, Text
  7. from urllib import parse
  8. Base = declarative_base()
  9. class ConsistencyDeltaSoc(Base):
  10. __tablename__ = "mechanism_sorout"
  11. __table_args__ = ({'comment': '电压内阻偏离检测'}) # 添加索引和表注释
  12. id = Column(Integer, primary_key=True, autoincrement=True, comment="主键")
  13. add_time = Column(TIMESTAMP(True), comment='记录创建时间') # 创建时间
  14. update_time = Column(TIMESTAMP(True), nullable=False, server_default=func.now(), onupdate=func.now(), comment='记录更新时间') # 更新时间
  15. sn = Column(String(64), comment="sn")
  16. time = Column(TIMESTAMP(True), comment="计算时刻")
  17. sor = Column(Text, comment="内阻")
  18. sor_sigma = Column(Text, comment="内阻偏离度")
  19. soc = Column(Text, comment="soc")
  20. temp = Column(Text, comment="temp")
  21. delta_time = Column(FLOAT, comment="放电时长")
  22. # def __init__(self, sn, current, time_stamp, pack_state, line_state):
  23. # self.sn = sn
  24. # self.current = current
  25. # self.time_stamp = time_stamp
  26. # self.pack_state = pack_state
  27. # self.line_state = line_state
  28. # 执行该文件,创建表格到对应的数据库中
  29. if __name__ == "__main__":
  30. host = 'rm-bp10j10qy42bzy0q77o.mysql.rds.aliyuncs.com'
  31. port = 3306
  32. user = 'qx_cas'
  33. password = parse.quote_plus('Qx@123456')
  34. database = 'qx_cas'
  35. db_engine = create_engine(
  36. "mysql+pymysql://{}:{}@{}:{}/{}?charset=utf8".format(
  37. user, password, host, port, database
  38. ))
  39. Base.metadata.create_all(db_engine)