token.go 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. // Code generated by ent, DO NOT EDIT.
  2. package ent
  3. import (
  4. "fmt"
  5. "strings"
  6. "time"
  7. "wechat-api/ent/token"
  8. "entgo.io/ent"
  9. "entgo.io/ent/dialect/sql"
  10. )
  11. // Token is the model entity for the Token schema.
  12. type Token struct {
  13. config `json:"-"`
  14. // ID of the ent.
  15. ID uint64 `json:"id,omitempty"`
  16. // Create Time | 创建日期
  17. CreatedAt time.Time `json:"created_at,omitempty"`
  18. // Update Time | 修改日期
  19. UpdatedAt time.Time `json:"updated_at,omitempty"`
  20. // Delete Time | 删除日期
  21. DeletedAt time.Time `json:"deleted_at,omitempty"`
  22. // 过期时间
  23. ExpireAt time.Time `json:"expire_at,omitempty"`
  24. // Token
  25. Token string `json:"token,omitempty"`
  26. // Mac地址
  27. MAC string `json:"mac,omitempty"`
  28. // 租户ID
  29. OrganizationID uint64 `json:"organization_id,omitempty"`
  30. selectValues sql.SelectValues
  31. }
  32. // scanValues returns the types for scanning values from sql.Rows.
  33. func (*Token) scanValues(columns []string) ([]any, error) {
  34. values := make([]any, len(columns))
  35. for i := range columns {
  36. switch columns[i] {
  37. case token.FieldID, token.FieldOrganizationID:
  38. values[i] = new(sql.NullInt64)
  39. case token.FieldToken, token.FieldMAC:
  40. values[i] = new(sql.NullString)
  41. case token.FieldCreatedAt, token.FieldUpdatedAt, token.FieldDeletedAt, token.FieldExpireAt:
  42. values[i] = new(sql.NullTime)
  43. default:
  44. values[i] = new(sql.UnknownType)
  45. }
  46. }
  47. return values, nil
  48. }
  49. // assignValues assigns the values that were returned from sql.Rows (after scanning)
  50. // to the Token fields.
  51. func (t *Token) assignValues(columns []string, values []any) error {
  52. if m, n := len(values), len(columns); m < n {
  53. return fmt.Errorf("mismatch number of scan values: %d != %d", m, n)
  54. }
  55. for i := range columns {
  56. switch columns[i] {
  57. case token.FieldID:
  58. value, ok := values[i].(*sql.NullInt64)
  59. if !ok {
  60. return fmt.Errorf("unexpected type %T for field id", value)
  61. }
  62. t.ID = uint64(value.Int64)
  63. case token.FieldCreatedAt:
  64. if value, ok := values[i].(*sql.NullTime); !ok {
  65. return fmt.Errorf("unexpected type %T for field created_at", values[i])
  66. } else if value.Valid {
  67. t.CreatedAt = value.Time
  68. }
  69. case token.FieldUpdatedAt:
  70. if value, ok := values[i].(*sql.NullTime); !ok {
  71. return fmt.Errorf("unexpected type %T for field updated_at", values[i])
  72. } else if value.Valid {
  73. t.UpdatedAt = value.Time
  74. }
  75. case token.FieldDeletedAt:
  76. if value, ok := values[i].(*sql.NullTime); !ok {
  77. return fmt.Errorf("unexpected type %T for field deleted_at", values[i])
  78. } else if value.Valid {
  79. t.DeletedAt = value.Time
  80. }
  81. case token.FieldExpireAt:
  82. if value, ok := values[i].(*sql.NullTime); !ok {
  83. return fmt.Errorf("unexpected type %T for field expire_at", values[i])
  84. } else if value.Valid {
  85. t.ExpireAt = value.Time
  86. }
  87. case token.FieldToken:
  88. if value, ok := values[i].(*sql.NullString); !ok {
  89. return fmt.Errorf("unexpected type %T for field token", values[i])
  90. } else if value.Valid {
  91. t.Token = value.String
  92. }
  93. case token.FieldMAC:
  94. if value, ok := values[i].(*sql.NullString); !ok {
  95. return fmt.Errorf("unexpected type %T for field mac", values[i])
  96. } else if value.Valid {
  97. t.MAC = value.String
  98. }
  99. case token.FieldOrganizationID:
  100. if value, ok := values[i].(*sql.NullInt64); !ok {
  101. return fmt.Errorf("unexpected type %T for field organization_id", values[i])
  102. } else if value.Valid {
  103. t.OrganizationID = uint64(value.Int64)
  104. }
  105. default:
  106. t.selectValues.Set(columns[i], values[i])
  107. }
  108. }
  109. return nil
  110. }
  111. // Value returns the ent.Value that was dynamically selected and assigned to the Token.
  112. // This includes values selected through modifiers, order, etc.
  113. func (t *Token) Value(name string) (ent.Value, error) {
  114. return t.selectValues.Get(name)
  115. }
  116. // Update returns a builder for updating this Token.
  117. // Note that you need to call Token.Unwrap() before calling this method if this Token
  118. // was returned from a transaction, and the transaction was committed or rolled back.
  119. func (t *Token) Update() *TokenUpdateOne {
  120. return NewTokenClient(t.config).UpdateOne(t)
  121. }
  122. // Unwrap unwraps the Token entity that was returned from a transaction after it was closed,
  123. // so that all future queries will be executed through the driver which created the transaction.
  124. func (t *Token) Unwrap() *Token {
  125. _tx, ok := t.config.driver.(*txDriver)
  126. if !ok {
  127. panic("ent: Token is not a transactional entity")
  128. }
  129. t.config.driver = _tx.drv
  130. return t
  131. }
  132. // String implements the fmt.Stringer.
  133. func (t *Token) String() string {
  134. var builder strings.Builder
  135. builder.WriteString("Token(")
  136. builder.WriteString(fmt.Sprintf("id=%v, ", t.ID))
  137. builder.WriteString("created_at=")
  138. builder.WriteString(t.CreatedAt.Format(time.ANSIC))
  139. builder.WriteString(", ")
  140. builder.WriteString("updated_at=")
  141. builder.WriteString(t.UpdatedAt.Format(time.ANSIC))
  142. builder.WriteString(", ")
  143. builder.WriteString("deleted_at=")
  144. builder.WriteString(t.DeletedAt.Format(time.ANSIC))
  145. builder.WriteString(", ")
  146. builder.WriteString("expire_at=")
  147. builder.WriteString(t.ExpireAt.Format(time.ANSIC))
  148. builder.WriteString(", ")
  149. builder.WriteString("token=")
  150. builder.WriteString(t.Token)
  151. builder.WriteString(", ")
  152. builder.WriteString("mac=")
  153. builder.WriteString(t.MAC)
  154. builder.WriteString(", ")
  155. builder.WriteString("organization_id=")
  156. builder.WriteString(fmt.Sprintf("%v", t.OrganizationID))
  157. builder.WriteByte(')')
  158. return builder.String()
  159. }
  160. // Tokens is a parsable slice of Token.
  161. type Tokens []*Token