token.go 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  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. // 智能体ID
  31. AgentID uint64 `json:"agent_id,omitempty"`
  32. // 定制agent服务地址
  33. CustomAgentBase string `json:"custom_agent_base,omitempty"`
  34. // 定制agent服务密钥
  35. CustomAgentKey string `json:"custom_agent_key,omitempty"`
  36. // 大模型服务地址
  37. OpenaiBase string `json:"openai_base,omitempty"`
  38. // 大模型服务密钥
  39. OpenaiKey string `json:"openai_key,omitempty"`
  40. selectValues sql.SelectValues
  41. }
  42. // scanValues returns the types for scanning values from sql.Rows.
  43. func (*Token) scanValues(columns []string) ([]any, error) {
  44. values := make([]any, len(columns))
  45. for i := range columns {
  46. switch columns[i] {
  47. case token.FieldID, token.FieldOrganizationID, token.FieldAgentID:
  48. values[i] = new(sql.NullInt64)
  49. case token.FieldToken, token.FieldMAC, token.FieldCustomAgentBase, token.FieldCustomAgentKey, token.FieldOpenaiBase, token.FieldOpenaiKey:
  50. values[i] = new(sql.NullString)
  51. case token.FieldCreatedAt, token.FieldUpdatedAt, token.FieldDeletedAt, token.FieldExpireAt:
  52. values[i] = new(sql.NullTime)
  53. default:
  54. values[i] = new(sql.UnknownType)
  55. }
  56. }
  57. return values, nil
  58. }
  59. // assignValues assigns the values that were returned from sql.Rows (after scanning)
  60. // to the Token fields.
  61. func (t *Token) assignValues(columns []string, values []any) error {
  62. if m, n := len(values), len(columns); m < n {
  63. return fmt.Errorf("mismatch number of scan values: %d != %d", m, n)
  64. }
  65. for i := range columns {
  66. switch columns[i] {
  67. case token.FieldID:
  68. value, ok := values[i].(*sql.NullInt64)
  69. if !ok {
  70. return fmt.Errorf("unexpected type %T for field id", value)
  71. }
  72. t.ID = uint64(value.Int64)
  73. case token.FieldCreatedAt:
  74. if value, ok := values[i].(*sql.NullTime); !ok {
  75. return fmt.Errorf("unexpected type %T for field created_at", values[i])
  76. } else if value.Valid {
  77. t.CreatedAt = value.Time
  78. }
  79. case token.FieldUpdatedAt:
  80. if value, ok := values[i].(*sql.NullTime); !ok {
  81. return fmt.Errorf("unexpected type %T for field updated_at", values[i])
  82. } else if value.Valid {
  83. t.UpdatedAt = value.Time
  84. }
  85. case token.FieldDeletedAt:
  86. if value, ok := values[i].(*sql.NullTime); !ok {
  87. return fmt.Errorf("unexpected type %T for field deleted_at", values[i])
  88. } else if value.Valid {
  89. t.DeletedAt = value.Time
  90. }
  91. case token.FieldExpireAt:
  92. if value, ok := values[i].(*sql.NullTime); !ok {
  93. return fmt.Errorf("unexpected type %T for field expire_at", values[i])
  94. } else if value.Valid {
  95. t.ExpireAt = value.Time
  96. }
  97. case token.FieldToken:
  98. if value, ok := values[i].(*sql.NullString); !ok {
  99. return fmt.Errorf("unexpected type %T for field token", values[i])
  100. } else if value.Valid {
  101. t.Token = value.String
  102. }
  103. case token.FieldMAC:
  104. if value, ok := values[i].(*sql.NullString); !ok {
  105. return fmt.Errorf("unexpected type %T for field mac", values[i])
  106. } else if value.Valid {
  107. t.MAC = value.String
  108. }
  109. case token.FieldOrganizationID:
  110. if value, ok := values[i].(*sql.NullInt64); !ok {
  111. return fmt.Errorf("unexpected type %T for field organization_id", values[i])
  112. } else if value.Valid {
  113. t.OrganizationID = uint64(value.Int64)
  114. }
  115. case token.FieldAgentID:
  116. if value, ok := values[i].(*sql.NullInt64); !ok {
  117. return fmt.Errorf("unexpected type %T for field agent_id", values[i])
  118. } else if value.Valid {
  119. t.AgentID = uint64(value.Int64)
  120. }
  121. case token.FieldCustomAgentBase:
  122. if value, ok := values[i].(*sql.NullString); !ok {
  123. return fmt.Errorf("unexpected type %T for field custom_agent_base", values[i])
  124. } else if value.Valid {
  125. t.CustomAgentBase = value.String
  126. }
  127. case token.FieldCustomAgentKey:
  128. if value, ok := values[i].(*sql.NullString); !ok {
  129. return fmt.Errorf("unexpected type %T for field custom_agent_key", values[i])
  130. } else if value.Valid {
  131. t.CustomAgentKey = value.String
  132. }
  133. case token.FieldOpenaiBase:
  134. if value, ok := values[i].(*sql.NullString); !ok {
  135. return fmt.Errorf("unexpected type %T for field openai_base", values[i])
  136. } else if value.Valid {
  137. t.OpenaiBase = value.String
  138. }
  139. case token.FieldOpenaiKey:
  140. if value, ok := values[i].(*sql.NullString); !ok {
  141. return fmt.Errorf("unexpected type %T for field openai_key", values[i])
  142. } else if value.Valid {
  143. t.OpenaiKey = value.String
  144. }
  145. default:
  146. t.selectValues.Set(columns[i], values[i])
  147. }
  148. }
  149. return nil
  150. }
  151. // Value returns the ent.Value that was dynamically selected and assigned to the Token.
  152. // This includes values selected through modifiers, order, etc.
  153. func (t *Token) Value(name string) (ent.Value, error) {
  154. return t.selectValues.Get(name)
  155. }
  156. // Update returns a builder for updating this Token.
  157. // Note that you need to call Token.Unwrap() before calling this method if this Token
  158. // was returned from a transaction, and the transaction was committed or rolled back.
  159. func (t *Token) Update() *TokenUpdateOne {
  160. return NewTokenClient(t.config).UpdateOne(t)
  161. }
  162. // Unwrap unwraps the Token entity that was returned from a transaction after it was closed,
  163. // so that all future queries will be executed through the driver which created the transaction.
  164. func (t *Token) Unwrap() *Token {
  165. _tx, ok := t.config.driver.(*txDriver)
  166. if !ok {
  167. panic("ent: Token is not a transactional entity")
  168. }
  169. t.config.driver = _tx.drv
  170. return t
  171. }
  172. // String implements the fmt.Stringer.
  173. func (t *Token) String() string {
  174. var builder strings.Builder
  175. builder.WriteString("Token(")
  176. builder.WriteString(fmt.Sprintf("id=%v, ", t.ID))
  177. builder.WriteString("created_at=")
  178. builder.WriteString(t.CreatedAt.Format(time.ANSIC))
  179. builder.WriteString(", ")
  180. builder.WriteString("updated_at=")
  181. builder.WriteString(t.UpdatedAt.Format(time.ANSIC))
  182. builder.WriteString(", ")
  183. builder.WriteString("deleted_at=")
  184. builder.WriteString(t.DeletedAt.Format(time.ANSIC))
  185. builder.WriteString(", ")
  186. builder.WriteString("expire_at=")
  187. builder.WriteString(t.ExpireAt.Format(time.ANSIC))
  188. builder.WriteString(", ")
  189. builder.WriteString("token=")
  190. builder.WriteString(t.Token)
  191. builder.WriteString(", ")
  192. builder.WriteString("mac=")
  193. builder.WriteString(t.MAC)
  194. builder.WriteString(", ")
  195. builder.WriteString("organization_id=")
  196. builder.WriteString(fmt.Sprintf("%v", t.OrganizationID))
  197. builder.WriteString(", ")
  198. builder.WriteString("agent_id=")
  199. builder.WriteString(fmt.Sprintf("%v", t.AgentID))
  200. builder.WriteString(", ")
  201. builder.WriteString("custom_agent_base=")
  202. builder.WriteString(t.CustomAgentBase)
  203. builder.WriteString(", ")
  204. builder.WriteString("custom_agent_key=")
  205. builder.WriteString(t.CustomAgentKey)
  206. builder.WriteString(", ")
  207. builder.WriteString("openai_base=")
  208. builder.WriteString(t.OpenaiBase)
  209. builder.WriteString(", ")
  210. builder.WriteString("openai_key=")
  211. builder.WriteString(t.OpenaiKey)
  212. builder.WriteByte(')')
  213. return builder.String()
  214. }
  215. // Tokens is a parsable slice of Token.
  216. type Tokens []*Token