agent.go 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. // Code generated by ent, DO NOT EDIT.
  2. package ent
  3. import (
  4. "fmt"
  5. "strings"
  6. "time"
  7. "wechat-api/ent/agent"
  8. "entgo.io/ent"
  9. "entgo.io/ent/dialect/sql"
  10. )
  11. // Agent is the model entity for the Agent schema.
  12. type Agent 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. // name | 角色名称
  23. Name string `json:"name,omitempty"`
  24. // role | 角色设定
  25. Role string `json:"role,omitempty"`
  26. // status | 状态 1-正常 2-禁用
  27. Status int `json:"status,omitempty"`
  28. // background | 背景介绍
  29. Background string `json:"background,omitempty"`
  30. // examples | 对话案例
  31. Examples string `json:"examples,omitempty"`
  32. // organization_id | 租户ID
  33. OrganizationID uint64 `json:"organization_id,omitempty"`
  34. // dataset_id | 知识库ID
  35. DatasetID string `json:"dataset_id,omitempty"`
  36. // collection_id | 集合ID
  37. CollectionID string `json:"collection_id,omitempty"`
  38. // model | 模型
  39. Model string `json:"model,omitempty"`
  40. // api_base | api_base
  41. APIBase string `json:"api_base,omitempty"`
  42. // api_key | api_key
  43. APIKey string `json:"api_key,omitempty"`
  44. // type | 类型 1. 内置 2. 接入
  45. Type int `json:"type,omitempty"`
  46. // Edges holds the relations/edges for other nodes in the graph.
  47. // The values are being populated by the AgentQuery when eager-loading is set.
  48. Edges AgentEdges `json:"edges"`
  49. selectValues sql.SelectValues
  50. }
  51. // AgentEdges holds the relations/edges for other nodes in the graph.
  52. type AgentEdges struct {
  53. // WxAgent holds the value of the wx_agent edge.
  54. WxAgent []*Wx `json:"wx_agent,omitempty"`
  55. // TokenAgent holds the value of the token_agent edge.
  56. TokenAgent []*Token `json:"token_agent,omitempty"`
  57. // WaAgent holds the value of the wa_agent edge.
  58. WaAgent []*Whatsapp `json:"wa_agent,omitempty"`
  59. // KeyAgent holds the value of the key_agent edge.
  60. KeyAgent []*ApiKey `json:"key_agent,omitempty"`
  61. // loadedTypes holds the information for reporting if a
  62. // type was loaded (or requested) in eager-loading or not.
  63. loadedTypes [4]bool
  64. }
  65. // WxAgentOrErr returns the WxAgent value or an error if the edge
  66. // was not loaded in eager-loading.
  67. func (e AgentEdges) WxAgentOrErr() ([]*Wx, error) {
  68. if e.loadedTypes[0] {
  69. return e.WxAgent, nil
  70. }
  71. return nil, &NotLoadedError{edge: "wx_agent"}
  72. }
  73. // TokenAgentOrErr returns the TokenAgent value or an error if the edge
  74. // was not loaded in eager-loading.
  75. func (e AgentEdges) TokenAgentOrErr() ([]*Token, error) {
  76. if e.loadedTypes[1] {
  77. return e.TokenAgent, nil
  78. }
  79. return nil, &NotLoadedError{edge: "token_agent"}
  80. }
  81. // WaAgentOrErr returns the WaAgent value or an error if the edge
  82. // was not loaded in eager-loading.
  83. func (e AgentEdges) WaAgentOrErr() ([]*Whatsapp, error) {
  84. if e.loadedTypes[2] {
  85. return e.WaAgent, nil
  86. }
  87. return nil, &NotLoadedError{edge: "wa_agent"}
  88. }
  89. // KeyAgentOrErr returns the KeyAgent value or an error if the edge
  90. // was not loaded in eager-loading.
  91. func (e AgentEdges) KeyAgentOrErr() ([]*ApiKey, error) {
  92. if e.loadedTypes[3] {
  93. return e.KeyAgent, nil
  94. }
  95. return nil, &NotLoadedError{edge: "key_agent"}
  96. }
  97. // scanValues returns the types for scanning values from sql.Rows.
  98. func (*Agent) scanValues(columns []string) ([]any, error) {
  99. values := make([]any, len(columns))
  100. for i := range columns {
  101. switch columns[i] {
  102. case agent.FieldID, agent.FieldStatus, agent.FieldOrganizationID, agent.FieldType:
  103. values[i] = new(sql.NullInt64)
  104. case agent.FieldName, agent.FieldRole, agent.FieldBackground, agent.FieldExamples, agent.FieldDatasetID, agent.FieldCollectionID, agent.FieldModel, agent.FieldAPIBase, agent.FieldAPIKey:
  105. values[i] = new(sql.NullString)
  106. case agent.FieldCreatedAt, agent.FieldUpdatedAt, agent.FieldDeletedAt:
  107. values[i] = new(sql.NullTime)
  108. default:
  109. values[i] = new(sql.UnknownType)
  110. }
  111. }
  112. return values, nil
  113. }
  114. // assignValues assigns the values that were returned from sql.Rows (after scanning)
  115. // to the Agent fields.
  116. func (a *Agent) assignValues(columns []string, values []any) error {
  117. if m, n := len(values), len(columns); m < n {
  118. return fmt.Errorf("mismatch number of scan values: %d != %d", m, n)
  119. }
  120. for i := range columns {
  121. switch columns[i] {
  122. case agent.FieldID:
  123. value, ok := values[i].(*sql.NullInt64)
  124. if !ok {
  125. return fmt.Errorf("unexpected type %T for field id", value)
  126. }
  127. a.ID = uint64(value.Int64)
  128. case agent.FieldCreatedAt:
  129. if value, ok := values[i].(*sql.NullTime); !ok {
  130. return fmt.Errorf("unexpected type %T for field created_at", values[i])
  131. } else if value.Valid {
  132. a.CreatedAt = value.Time
  133. }
  134. case agent.FieldUpdatedAt:
  135. if value, ok := values[i].(*sql.NullTime); !ok {
  136. return fmt.Errorf("unexpected type %T for field updated_at", values[i])
  137. } else if value.Valid {
  138. a.UpdatedAt = value.Time
  139. }
  140. case agent.FieldDeletedAt:
  141. if value, ok := values[i].(*sql.NullTime); !ok {
  142. return fmt.Errorf("unexpected type %T for field deleted_at", values[i])
  143. } else if value.Valid {
  144. a.DeletedAt = value.Time
  145. }
  146. case agent.FieldName:
  147. if value, ok := values[i].(*sql.NullString); !ok {
  148. return fmt.Errorf("unexpected type %T for field name", values[i])
  149. } else if value.Valid {
  150. a.Name = value.String
  151. }
  152. case agent.FieldRole:
  153. if value, ok := values[i].(*sql.NullString); !ok {
  154. return fmt.Errorf("unexpected type %T for field role", values[i])
  155. } else if value.Valid {
  156. a.Role = value.String
  157. }
  158. case agent.FieldStatus:
  159. if value, ok := values[i].(*sql.NullInt64); !ok {
  160. return fmt.Errorf("unexpected type %T for field status", values[i])
  161. } else if value.Valid {
  162. a.Status = int(value.Int64)
  163. }
  164. case agent.FieldBackground:
  165. if value, ok := values[i].(*sql.NullString); !ok {
  166. return fmt.Errorf("unexpected type %T for field background", values[i])
  167. } else if value.Valid {
  168. a.Background = value.String
  169. }
  170. case agent.FieldExamples:
  171. if value, ok := values[i].(*sql.NullString); !ok {
  172. return fmt.Errorf("unexpected type %T for field examples", values[i])
  173. } else if value.Valid {
  174. a.Examples = value.String
  175. }
  176. case agent.FieldOrganizationID:
  177. if value, ok := values[i].(*sql.NullInt64); !ok {
  178. return fmt.Errorf("unexpected type %T for field organization_id", values[i])
  179. } else if value.Valid {
  180. a.OrganizationID = uint64(value.Int64)
  181. }
  182. case agent.FieldDatasetID:
  183. if value, ok := values[i].(*sql.NullString); !ok {
  184. return fmt.Errorf("unexpected type %T for field dataset_id", values[i])
  185. } else if value.Valid {
  186. a.DatasetID = value.String
  187. }
  188. case agent.FieldCollectionID:
  189. if value, ok := values[i].(*sql.NullString); !ok {
  190. return fmt.Errorf("unexpected type %T for field collection_id", values[i])
  191. } else if value.Valid {
  192. a.CollectionID = value.String
  193. }
  194. case agent.FieldModel:
  195. if value, ok := values[i].(*sql.NullString); !ok {
  196. return fmt.Errorf("unexpected type %T for field model", values[i])
  197. } else if value.Valid {
  198. a.Model = value.String
  199. }
  200. case agent.FieldAPIBase:
  201. if value, ok := values[i].(*sql.NullString); !ok {
  202. return fmt.Errorf("unexpected type %T for field api_base", values[i])
  203. } else if value.Valid {
  204. a.APIBase = value.String
  205. }
  206. case agent.FieldAPIKey:
  207. if value, ok := values[i].(*sql.NullString); !ok {
  208. return fmt.Errorf("unexpected type %T for field api_key", values[i])
  209. } else if value.Valid {
  210. a.APIKey = value.String
  211. }
  212. case agent.FieldType:
  213. if value, ok := values[i].(*sql.NullInt64); !ok {
  214. return fmt.Errorf("unexpected type %T for field type", values[i])
  215. } else if value.Valid {
  216. a.Type = int(value.Int64)
  217. }
  218. default:
  219. a.selectValues.Set(columns[i], values[i])
  220. }
  221. }
  222. return nil
  223. }
  224. // Value returns the ent.Value that was dynamically selected and assigned to the Agent.
  225. // This includes values selected through modifiers, order, etc.
  226. func (a *Agent) Value(name string) (ent.Value, error) {
  227. return a.selectValues.Get(name)
  228. }
  229. // QueryWxAgent queries the "wx_agent" edge of the Agent entity.
  230. func (a *Agent) QueryWxAgent() *WxQuery {
  231. return NewAgentClient(a.config).QueryWxAgent(a)
  232. }
  233. // QueryTokenAgent queries the "token_agent" edge of the Agent entity.
  234. func (a *Agent) QueryTokenAgent() *TokenQuery {
  235. return NewAgentClient(a.config).QueryTokenAgent(a)
  236. }
  237. // QueryWaAgent queries the "wa_agent" edge of the Agent entity.
  238. func (a *Agent) QueryWaAgent() *WhatsappQuery {
  239. return NewAgentClient(a.config).QueryWaAgent(a)
  240. }
  241. // QueryKeyAgent queries the "key_agent" edge of the Agent entity.
  242. func (a *Agent) QueryKeyAgent() *ApiKeyQuery {
  243. return NewAgentClient(a.config).QueryKeyAgent(a)
  244. }
  245. // Update returns a builder for updating this Agent.
  246. // Note that you need to call Agent.Unwrap() before calling this method if this Agent
  247. // was returned from a transaction, and the transaction was committed or rolled back.
  248. func (a *Agent) Update() *AgentUpdateOne {
  249. return NewAgentClient(a.config).UpdateOne(a)
  250. }
  251. // Unwrap unwraps the Agent entity that was returned from a transaction after it was closed,
  252. // so that all future queries will be executed through the driver which created the transaction.
  253. func (a *Agent) Unwrap() *Agent {
  254. _tx, ok := a.config.driver.(*txDriver)
  255. if !ok {
  256. panic("ent: Agent is not a transactional entity")
  257. }
  258. a.config.driver = _tx.drv
  259. return a
  260. }
  261. // String implements the fmt.Stringer.
  262. func (a *Agent) String() string {
  263. var builder strings.Builder
  264. builder.WriteString("Agent(")
  265. builder.WriteString(fmt.Sprintf("id=%v, ", a.ID))
  266. builder.WriteString("created_at=")
  267. builder.WriteString(a.CreatedAt.Format(time.ANSIC))
  268. builder.WriteString(", ")
  269. builder.WriteString("updated_at=")
  270. builder.WriteString(a.UpdatedAt.Format(time.ANSIC))
  271. builder.WriteString(", ")
  272. builder.WriteString("deleted_at=")
  273. builder.WriteString(a.DeletedAt.Format(time.ANSIC))
  274. builder.WriteString(", ")
  275. builder.WriteString("name=")
  276. builder.WriteString(a.Name)
  277. builder.WriteString(", ")
  278. builder.WriteString("role=")
  279. builder.WriteString(a.Role)
  280. builder.WriteString(", ")
  281. builder.WriteString("status=")
  282. builder.WriteString(fmt.Sprintf("%v", a.Status))
  283. builder.WriteString(", ")
  284. builder.WriteString("background=")
  285. builder.WriteString(a.Background)
  286. builder.WriteString(", ")
  287. builder.WriteString("examples=")
  288. builder.WriteString(a.Examples)
  289. builder.WriteString(", ")
  290. builder.WriteString("organization_id=")
  291. builder.WriteString(fmt.Sprintf("%v", a.OrganizationID))
  292. builder.WriteString(", ")
  293. builder.WriteString("dataset_id=")
  294. builder.WriteString(a.DatasetID)
  295. builder.WriteString(", ")
  296. builder.WriteString("collection_id=")
  297. builder.WriteString(a.CollectionID)
  298. builder.WriteString(", ")
  299. builder.WriteString("model=")
  300. builder.WriteString(a.Model)
  301. builder.WriteString(", ")
  302. builder.WriteString("api_base=")
  303. builder.WriteString(a.APIBase)
  304. builder.WriteString(", ")
  305. builder.WriteString("api_key=")
  306. builder.WriteString(a.APIKey)
  307. builder.WriteString(", ")
  308. builder.WriteString("type=")
  309. builder.WriteString(fmt.Sprintf("%v", a.Type))
  310. builder.WriteByte(')')
  311. return builder.String()
  312. }
  313. // Agents is a parsable slice of Agent.
  314. type Agents []*Agent