demo / models /user_info.py
tekville's picture
Initial commit
ff72db3
# from sqlalchemy import Column, String, BigInteger, DateTime, ForeignKey
# from config.database import Base
# from sqlalchemy.dialects.mysql import TINYINT # MySQL TINYINT νƒ€μž…
# class UserInfo(Base):
# __tablename__ = "USER_INFO"
# id = Column(String(36), primary_key=True, comment="ID")
# preferred_username = Column(String(50), nullable=True, comment="λ‘œκ·ΈμΈμ•„μ΄λ””")
# mobile = Column(String(15), nullable=True, comment="λͺ¨λ°”일")
# business_cd = Column(String(8), nullable=True, comment="μ†Œμ†κΈ°κ΄€μΌλ ¨λ²ˆ")
# role_seq = Column(BigInteger, ForeignKey("ROLE.SEQ"), nullable=True, comment="μ—­ν• μΌλ ¨λ²ˆν˜Έ")
# name = Column(String(255), nullable=True, comment="μ‚¬μš©μžμ΄λ¦„")
# email = Column(String(255), nullable=True, comment="이메일")
# profile = Column(String(255), nullable=True, comment="ν”„λ‘œν•„")
# school_code = Column(String(50), nullable=True, comment="ν•™κ΅μ½”λ“œ")
# grade = Column(TINYINT, nullable=True, comment="ν•™λ…„")
# class_name = Column(String(50), nullable=True, comment="ν•™κΈ‰")
# student_no = Column(TINYINT, nullable=True, comment="ν•™μƒλ²ˆν˜Έ")
# created_at = Column(DateTime, nullable=False, comment="생성일")
# creator_id = Column(String(36), nullable=True, comment="μƒμ„±μžμ•„μ΄λ””")
# creator_ip = Column(String(50), nullable=True, comment="μƒμ„±μžIP")
# updated_at = Column(DateTime, nullable=True, comment="μˆ˜μ •μΌ")
# updater_id = Column(String(36), nullable=True, comment="μˆ˜μ •μžμ•„μ΄λ””")
# updater_ip = Column(String(50), nullable=True, comment="μˆ˜μ •μžIP")