ta_person.go 458B

1234567891011121314
  1. package models
  2. import (
  3. "time"
  4. )
  5. type TaPerson struct {
  6. PersonId string `xorm:"not null pk comment('人员ID') VARCHAR(32)"`
  7. PersonName string `xorm:"comment('名称') VARCHAR(90)"`
  8. Avatar string `xorm:"comment('头像') TEXT"`
  9. PersonPassword string `xorm:"comment('密码') VARCHAR(128)"`
  10. Status int `xorm:"comment('状态') INT(11)"`
  11. CreateDate time.Time `xorm:"comment('创建日期') DATETIME"`
  12. }