agent.go 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  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. // Edges holds the relations/edges for other nodes in the graph.
  39. // The values are being populated by the AgentQuery when eager-loading is set.
  40. Edges AgentEdges `json:"edges"`
  41. selectValues sql.SelectValues
  42. }
  43. // AgentEdges holds the relations/edges for other nodes in the graph.
  44. type AgentEdges struct {
  45. // WxAgent holds the value of the wx_agent edge.
  46. WxAgent []*Wx `json:"wx_agent,omitempty"`
  47. // TokenAgent holds the value of the token_agent edge.
  48. TokenAgent []*Token `json:"token_agent,omitempty"`
  49. // loadedTypes holds the information for reporting if a
  50. // type was loaded (or requested) in eager-loading or not.
  51. loadedTypes [2]bool
  52. }
  53. // WxAgentOrErr returns the WxAgent value or an error if the edge
  54. // was not loaded in eager-loading.
  55. func (e AgentEdges) WxAgentOrErr() ([]*Wx, error) {
  56. if e.loadedTypes[0] {
  57. return e.WxAgent, nil
  58. }
  59. return nil, &NotLoadedError{edge: "wx_agent"}
  60. }
  61. // TokenAgentOrErr returns the TokenAgent value or an error if the edge
  62. // was not loaded in eager-loading.
  63. func (e AgentEdges) TokenAgentOrErr() ([]*Token, error) {
  64. if e.loadedTypes[1] {
  65. return e.TokenAgent, nil
  66. }
  67. return nil, &NotLoadedError{edge: "token_agent"}
  68. }
  69. // scanValues returns the types for scanning values from sql.Rows.
  70. func (*Agent) scanValues(columns []string) ([]any, error) {
  71. values := make([]any, len(columns))
  72. for i := range columns {
  73. switch columns[i] {
  74. case agent.FieldID, agent.FieldStatus, agent.FieldOrganizationID:
  75. values[i] = new(sql.NullInt64)
  76. case agent.FieldName, agent.FieldRole, agent.FieldBackground, agent.FieldExamples, agent.FieldDatasetID, agent.FieldCollectionID:
  77. values[i] = new(sql.NullString)
  78. case agent.FieldCreatedAt, agent.FieldUpdatedAt, agent.FieldDeletedAt:
  79. values[i] = new(sql.NullTime)
  80. default:
  81. values[i] = new(sql.UnknownType)
  82. }
  83. }
  84. return values, nil
  85. }
  86. // assignValues assigns the values that were returned from sql.Rows (after scanning)
  87. // to the Agent fields.
  88. func (a *Agent) assignValues(columns []string, values []any) error {
  89. if m, n := len(values), len(columns); m < n {
  90. return fmt.Errorf("mismatch number of scan values: %d != %d", m, n)
  91. }
  92. for i := range columns {
  93. switch columns[i] {
  94. case agent.FieldID:
  95. value, ok := values[i].(*sql.NullInt64)
  96. if !ok {
  97. return fmt.Errorf("unexpected type %T for field id", value)
  98. }
  99. a.ID = uint64(value.Int64)
  100. case agent.FieldCreatedAt:
  101. if value, ok := values[i].(*sql.NullTime); !ok {
  102. return fmt.Errorf("unexpected type %T for field created_at", values[i])
  103. } else if value.Valid {
  104. a.CreatedAt = value.Time
  105. }
  106. case agent.FieldUpdatedAt:
  107. if value, ok := values[i].(*sql.NullTime); !ok {
  108. return fmt.Errorf("unexpected type %T for field updated_at", values[i])
  109. } else if value.Valid {
  110. a.UpdatedAt = value.Time
  111. }
  112. case agent.FieldDeletedAt:
  113. if value, ok := values[i].(*sql.NullTime); !ok {
  114. return fmt.Errorf("unexpected type %T for field deleted_at", values[i])
  115. } else if value.Valid {
  116. a.DeletedAt = value.Time
  117. }
  118. case agent.FieldName:
  119. if value, ok := values[i].(*sql.NullString); !ok {
  120. return fmt.Errorf("unexpected type %T for field name", values[i])
  121. } else if value.Valid {
  122. a.Name = value.String
  123. }
  124. case agent.FieldRole:
  125. if value, ok := values[i].(*sql.NullString); !ok {
  126. return fmt.Errorf("unexpected type %T for field role", values[i])
  127. } else if value.Valid {
  128. a.Role = value.String
  129. }
  130. case agent.FieldStatus:
  131. if value, ok := values[i].(*sql.NullInt64); !ok {
  132. return fmt.Errorf("unexpected type %T for field status", values[i])
  133. } else if value.Valid {
  134. a.Status = int(value.Int64)
  135. }
  136. case agent.FieldBackground:
  137. if value, ok := values[i].(*sql.NullString); !ok {
  138. return fmt.Errorf("unexpected type %T for field background", values[i])
  139. } else if value.Valid {
  140. a.Background = value.String
  141. }
  142. case agent.FieldExamples:
  143. if value, ok := values[i].(*sql.NullString); !ok {
  144. return fmt.Errorf("unexpected type %T for field examples", values[i])
  145. } else if value.Valid {
  146. a.Examples = value.String
  147. }
  148. case agent.FieldOrganizationID:
  149. if value, ok := values[i].(*sql.NullInt64); !ok {
  150. return fmt.Errorf("unexpected type %T for field organization_id", values[i])
  151. } else if value.Valid {
  152. a.OrganizationID = uint64(value.Int64)
  153. }
  154. case agent.FieldDatasetID:
  155. if value, ok := values[i].(*sql.NullString); !ok {
  156. return fmt.Errorf("unexpected type %T for field dataset_id", values[i])
  157. } else if value.Valid {
  158. a.DatasetID = value.String
  159. }
  160. case agent.FieldCollectionID:
  161. if value, ok := values[i].(*sql.NullString); !ok {
  162. return fmt.Errorf("unexpected type %T for field collection_id", values[i])
  163. } else if value.Valid {
  164. a.CollectionID = value.String
  165. }
  166. default:
  167. a.selectValues.Set(columns[i], values[i])
  168. }
  169. }
  170. return nil
  171. }
  172. // Value returns the ent.Value that was dynamically selected and assigned to the Agent.
  173. // This includes values selected through modifiers, order, etc.
  174. func (a *Agent) Value(name string) (ent.Value, error) {
  175. return a.selectValues.Get(name)
  176. }
  177. // QueryWxAgent queries the "wx_agent" edge of the Agent entity.
  178. func (a *Agent) QueryWxAgent() *WxQuery {
  179. return NewAgentClient(a.config).QueryWxAgent(a)
  180. }
  181. // QueryTokenAgent queries the "token_agent" edge of the Agent entity.
  182. func (a *Agent) QueryTokenAgent() *TokenQuery {
  183. return NewAgentClient(a.config).QueryTokenAgent(a)
  184. }
  185. // Update returns a builder for updating this Agent.
  186. // Note that you need to call Agent.Unwrap() before calling this method if this Agent
  187. // was returned from a transaction, and the transaction was committed or rolled back.
  188. func (a *Agent) Update() *AgentUpdateOne {
  189. return NewAgentClient(a.config).UpdateOne(a)
  190. }
  191. // Unwrap unwraps the Agent entity that was returned from a transaction after it was closed,
  192. // so that all future queries will be executed through the driver which created the transaction.
  193. func (a *Agent) Unwrap() *Agent {
  194. _tx, ok := a.config.driver.(*txDriver)
  195. if !ok {
  196. panic("ent: Agent is not a transactional entity")
  197. }
  198. a.config.driver = _tx.drv
  199. return a
  200. }
  201. // String implements the fmt.Stringer.
  202. func (a *Agent) String() string {
  203. var builder strings.Builder
  204. builder.WriteString("Agent(")
  205. builder.WriteString(fmt.Sprintf("id=%v, ", a.ID))
  206. builder.WriteString("created_at=")
  207. builder.WriteString(a.CreatedAt.Format(time.ANSIC))
  208. builder.WriteString(", ")
  209. builder.WriteString("updated_at=")
  210. builder.WriteString(a.UpdatedAt.Format(time.ANSIC))
  211. builder.WriteString(", ")
  212. builder.WriteString("deleted_at=")
  213. builder.WriteString(a.DeletedAt.Format(time.ANSIC))
  214. builder.WriteString(", ")
  215. builder.WriteString("name=")
  216. builder.WriteString(a.Name)
  217. builder.WriteString(", ")
  218. builder.WriteString("role=")
  219. builder.WriteString(a.Role)
  220. builder.WriteString(", ")
  221. builder.WriteString("status=")
  222. builder.WriteString(fmt.Sprintf("%v", a.Status))
  223. builder.WriteString(", ")
  224. builder.WriteString("background=")
  225. builder.WriteString(a.Background)
  226. builder.WriteString(", ")
  227. builder.WriteString("examples=")
  228. builder.WriteString(a.Examples)
  229. builder.WriteString(", ")
  230. builder.WriteString("organization_id=")
  231. builder.WriteString(fmt.Sprintf("%v", a.OrganizationID))
  232. builder.WriteString(", ")
  233. builder.WriteString("dataset_id=")
  234. builder.WriteString(a.DatasetID)
  235. builder.WriteString(", ")
  236. builder.WriteString("collection_id=")
  237. builder.WriteString(a.CollectionID)
  238. builder.WriteByte(')')
  239. return builder.String()
  240. }
  241. // Agents is a parsable slice of Agent.
  242. type Agents []*Agent