code_msg.go 586 B

123456789101112131415161718192021
  1. package codes
  2. import (
  3. xtime "go-common/library/time"
  4. )
  5. // TableName case tablename
  6. func (*CodeMsg) TableName() string {
  7. return "code_msg"
  8. }
  9. // CodeMsg ...
  10. type CodeMsg struct {
  11. ID int64 `gorm:"column:id" json:"cid"`
  12. CodeID int64 `gorm:"column:code_id" json:"code_id"`
  13. Locale string `gorm:"column:locale" json:"locale"`
  14. Msg string `gorm:"column:msg" json:"msg"`
  15. Operator string `gorm:"column:operator" json:"c_operator"`
  16. CTime xtime.Time `gorm:"column:ctime" json:"c_ctime"`
  17. MTime xtime.Time `gorm:"column:mtime" json:"c_mtime"`
  18. }