agent.go 7.9 KB

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