sopstage.go 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. // Code generated by ent, DO NOT EDIT.
  2. package ent
  3. import (
  4. "encoding/json"
  5. "fmt"
  6. "strings"
  7. "time"
  8. "wechat-api/ent/custom_types"
  9. "wechat-api/ent/sopstage"
  10. "wechat-api/ent/soptask"
  11. "entgo.io/ent"
  12. "entgo.io/ent/dialect/sql"
  13. )
  14. // SopStage is the model entity for the SopStage schema.
  15. type SopStage struct {
  16. config `json:"-"`
  17. // ID of the ent.
  18. ID uint64 `json:"id,omitempty"`
  19. // Create Time | 创建日期
  20. CreatedAt time.Time `json:"created_at,omitempty"`
  21. // Update Time | 修改日期
  22. UpdatedAt time.Time `json:"updated_at,omitempty"`
  23. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  24. Status uint8 `json:"status,omitempty"`
  25. // Delete Time | 删除日期
  26. DeletedAt time.Time `json:"deleted_at,omitempty"`
  27. // SOP 任务 ID
  28. TaskID uint64 `json:"task_id,omitempty"`
  29. // 阶段名称
  30. Name string `json:"name,omitempty"`
  31. // 客群筛选条件类型 1 按标签筛选 2 按客户基本信息筛选
  32. ConditionType int `json:"condition_type,omitempty"`
  33. // 筛选条件关系 1 满足所有条件(and) 2 满足任意条件(or)
  34. ConditionOperator int `json:"condition_operator,omitempty"`
  35. // 筛选条件列表
  36. ConditionList []custom_types.Condition `json:"condition_list,omitempty"`
  37. // 命中后发送的消息内容
  38. ActionMessage []custom_types.Action `json:"action_message,omitempty"`
  39. // 命中后需要打的标签
  40. ActionLabel []int `json:"action_label,omitempty"`
  41. // 阶段顺序
  42. IndexSort int `json:"index_sort,omitempty"`
  43. // Edges holds the relations/edges for other nodes in the graph.
  44. // The values are being populated by the SopStageQuery when eager-loading is set.
  45. Edges SopStageEdges `json:"edges"`
  46. selectValues sql.SelectValues
  47. }
  48. // SopStageEdges holds the relations/edges for other nodes in the graph.
  49. type SopStageEdges struct {
  50. // SopTask holds the value of the sop_task edge.
  51. SopTask *SopTask `json:"sop_task,omitempty"`
  52. // StageNodes holds the value of the stage_nodes edge.
  53. StageNodes []*SopNode `json:"stage_nodes,omitempty"`
  54. // loadedTypes holds the information for reporting if a
  55. // type was loaded (or requested) in eager-loading or not.
  56. loadedTypes [2]bool
  57. }
  58. // SopTaskOrErr returns the SopTask value or an error if the edge
  59. // was not loaded in eager-loading, or loaded but was not found.
  60. func (e SopStageEdges) SopTaskOrErr() (*SopTask, error) {
  61. if e.SopTask != nil {
  62. return e.SopTask, nil
  63. } else if e.loadedTypes[0] {
  64. return nil, &NotFoundError{label: soptask.Label}
  65. }
  66. return nil, &NotLoadedError{edge: "sop_task"}
  67. }
  68. // StageNodesOrErr returns the StageNodes value or an error if the edge
  69. // was not loaded in eager-loading.
  70. func (e SopStageEdges) StageNodesOrErr() ([]*SopNode, error) {
  71. if e.loadedTypes[1] {
  72. return e.StageNodes, nil
  73. }
  74. return nil, &NotLoadedError{edge: "stage_nodes"}
  75. }
  76. // scanValues returns the types for scanning values from sql.Rows.
  77. func (*SopStage) scanValues(columns []string) ([]any, error) {
  78. values := make([]any, len(columns))
  79. for i := range columns {
  80. switch columns[i] {
  81. case sopstage.FieldConditionList, sopstage.FieldActionMessage, sopstage.FieldActionLabel:
  82. values[i] = new([]byte)
  83. case sopstage.FieldID, sopstage.FieldStatus, sopstage.FieldTaskID, sopstage.FieldConditionType, sopstage.FieldConditionOperator, sopstage.FieldIndexSort:
  84. values[i] = new(sql.NullInt64)
  85. case sopstage.FieldName:
  86. values[i] = new(sql.NullString)
  87. case sopstage.FieldCreatedAt, sopstage.FieldUpdatedAt, sopstage.FieldDeletedAt:
  88. values[i] = new(sql.NullTime)
  89. default:
  90. values[i] = new(sql.UnknownType)
  91. }
  92. }
  93. return values, nil
  94. }
  95. // assignValues assigns the values that were returned from sql.Rows (after scanning)
  96. // to the SopStage fields.
  97. func (ss *SopStage) assignValues(columns []string, values []any) error {
  98. if m, n := len(values), len(columns); m < n {
  99. return fmt.Errorf("mismatch number of scan values: %d != %d", m, n)
  100. }
  101. for i := range columns {
  102. switch columns[i] {
  103. case sopstage.FieldID:
  104. value, ok := values[i].(*sql.NullInt64)
  105. if !ok {
  106. return fmt.Errorf("unexpected type %T for field id", value)
  107. }
  108. ss.ID = uint64(value.Int64)
  109. case sopstage.FieldCreatedAt:
  110. if value, ok := values[i].(*sql.NullTime); !ok {
  111. return fmt.Errorf("unexpected type %T for field created_at", values[i])
  112. } else if value.Valid {
  113. ss.CreatedAt = value.Time
  114. }
  115. case sopstage.FieldUpdatedAt:
  116. if value, ok := values[i].(*sql.NullTime); !ok {
  117. return fmt.Errorf("unexpected type %T for field updated_at", values[i])
  118. } else if value.Valid {
  119. ss.UpdatedAt = value.Time
  120. }
  121. case sopstage.FieldStatus:
  122. if value, ok := values[i].(*sql.NullInt64); !ok {
  123. return fmt.Errorf("unexpected type %T for field status", values[i])
  124. } else if value.Valid {
  125. ss.Status = uint8(value.Int64)
  126. }
  127. case sopstage.FieldDeletedAt:
  128. if value, ok := values[i].(*sql.NullTime); !ok {
  129. return fmt.Errorf("unexpected type %T for field deleted_at", values[i])
  130. } else if value.Valid {
  131. ss.DeletedAt = value.Time
  132. }
  133. case sopstage.FieldTaskID:
  134. if value, ok := values[i].(*sql.NullInt64); !ok {
  135. return fmt.Errorf("unexpected type %T for field task_id", values[i])
  136. } else if value.Valid {
  137. ss.TaskID = uint64(value.Int64)
  138. }
  139. case sopstage.FieldName:
  140. if value, ok := values[i].(*sql.NullString); !ok {
  141. return fmt.Errorf("unexpected type %T for field name", values[i])
  142. } else if value.Valid {
  143. ss.Name = value.String
  144. }
  145. case sopstage.FieldConditionType:
  146. if value, ok := values[i].(*sql.NullInt64); !ok {
  147. return fmt.Errorf("unexpected type %T for field condition_type", values[i])
  148. } else if value.Valid {
  149. ss.ConditionType = int(value.Int64)
  150. }
  151. case sopstage.FieldConditionOperator:
  152. if value, ok := values[i].(*sql.NullInt64); !ok {
  153. return fmt.Errorf("unexpected type %T for field condition_operator", values[i])
  154. } else if value.Valid {
  155. ss.ConditionOperator = int(value.Int64)
  156. }
  157. case sopstage.FieldConditionList:
  158. if value, ok := values[i].(*[]byte); !ok {
  159. return fmt.Errorf("unexpected type %T for field condition_list", values[i])
  160. } else if value != nil && len(*value) > 0 {
  161. if err := json.Unmarshal(*value, &ss.ConditionList); err != nil {
  162. return fmt.Errorf("unmarshal field condition_list: %w", err)
  163. }
  164. }
  165. case sopstage.FieldActionMessage:
  166. if value, ok := values[i].(*[]byte); !ok {
  167. return fmt.Errorf("unexpected type %T for field action_message", values[i])
  168. } else if value != nil && len(*value) > 0 {
  169. if err := json.Unmarshal(*value, &ss.ActionMessage); err != nil {
  170. return fmt.Errorf("unmarshal field action_message: %w", err)
  171. }
  172. }
  173. case sopstage.FieldActionLabel:
  174. if value, ok := values[i].(*[]byte); !ok {
  175. return fmt.Errorf("unexpected type %T for field action_label", values[i])
  176. } else if value != nil && len(*value) > 0 {
  177. if err := json.Unmarshal(*value, &ss.ActionLabel); err != nil {
  178. return fmt.Errorf("unmarshal field action_label: %w", err)
  179. }
  180. }
  181. case sopstage.FieldIndexSort:
  182. if value, ok := values[i].(*sql.NullInt64); !ok {
  183. return fmt.Errorf("unexpected type %T for field index_sort", values[i])
  184. } else if value.Valid {
  185. ss.IndexSort = int(value.Int64)
  186. }
  187. default:
  188. ss.selectValues.Set(columns[i], values[i])
  189. }
  190. }
  191. return nil
  192. }
  193. // Value returns the ent.Value that was dynamically selected and assigned to the SopStage.
  194. // This includes values selected through modifiers, order, etc.
  195. func (ss *SopStage) Value(name string) (ent.Value, error) {
  196. return ss.selectValues.Get(name)
  197. }
  198. // QuerySopTask queries the "sop_task" edge of the SopStage entity.
  199. func (ss *SopStage) QuerySopTask() *SopTaskQuery {
  200. return NewSopStageClient(ss.config).QuerySopTask(ss)
  201. }
  202. // QueryStageNodes queries the "stage_nodes" edge of the SopStage entity.
  203. func (ss *SopStage) QueryStageNodes() *SopNodeQuery {
  204. return NewSopStageClient(ss.config).QueryStageNodes(ss)
  205. }
  206. // Update returns a builder for updating this SopStage.
  207. // Note that you need to call SopStage.Unwrap() before calling this method if this SopStage
  208. // was returned from a transaction, and the transaction was committed or rolled back.
  209. func (ss *SopStage) Update() *SopStageUpdateOne {
  210. return NewSopStageClient(ss.config).UpdateOne(ss)
  211. }
  212. // Unwrap unwraps the SopStage entity that was returned from a transaction after it was closed,
  213. // so that all future queries will be executed through the driver which created the transaction.
  214. func (ss *SopStage) Unwrap() *SopStage {
  215. _tx, ok := ss.config.driver.(*txDriver)
  216. if !ok {
  217. panic("ent: SopStage is not a transactional entity")
  218. }
  219. ss.config.driver = _tx.drv
  220. return ss
  221. }
  222. // String implements the fmt.Stringer.
  223. func (ss *SopStage) String() string {
  224. var builder strings.Builder
  225. builder.WriteString("SopStage(")
  226. builder.WriteString(fmt.Sprintf("id=%v, ", ss.ID))
  227. builder.WriteString("created_at=")
  228. builder.WriteString(ss.CreatedAt.Format(time.ANSIC))
  229. builder.WriteString(", ")
  230. builder.WriteString("updated_at=")
  231. builder.WriteString(ss.UpdatedAt.Format(time.ANSIC))
  232. builder.WriteString(", ")
  233. builder.WriteString("status=")
  234. builder.WriteString(fmt.Sprintf("%v", ss.Status))
  235. builder.WriteString(", ")
  236. builder.WriteString("deleted_at=")
  237. builder.WriteString(ss.DeletedAt.Format(time.ANSIC))
  238. builder.WriteString(", ")
  239. builder.WriteString("task_id=")
  240. builder.WriteString(fmt.Sprintf("%v", ss.TaskID))
  241. builder.WriteString(", ")
  242. builder.WriteString("name=")
  243. builder.WriteString(ss.Name)
  244. builder.WriteString(", ")
  245. builder.WriteString("condition_type=")
  246. builder.WriteString(fmt.Sprintf("%v", ss.ConditionType))
  247. builder.WriteString(", ")
  248. builder.WriteString("condition_operator=")
  249. builder.WriteString(fmt.Sprintf("%v", ss.ConditionOperator))
  250. builder.WriteString(", ")
  251. builder.WriteString("condition_list=")
  252. builder.WriteString(fmt.Sprintf("%v", ss.ConditionList))
  253. builder.WriteString(", ")
  254. builder.WriteString("action_message=")
  255. builder.WriteString(fmt.Sprintf("%v", ss.ActionMessage))
  256. builder.WriteString(", ")
  257. builder.WriteString("action_label=")
  258. builder.WriteString(fmt.Sprintf("%v", ss.ActionLabel))
  259. builder.WriteString(", ")
  260. builder.WriteString("index_sort=")
  261. builder.WriteString(fmt.Sprintf("%v", ss.IndexSort))
  262. builder.WriteByte(')')
  263. return builder.String()
  264. }
  265. // SopStages is a parsable slice of SopStage.
  266. type SopStages []*SopStage