sopnode.go 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. // Code generated by ent, DO NOT EDIT.
  2. package sopnode
  3. import (
  4. "time"
  5. "entgo.io/ent"
  6. "entgo.io/ent/dialect/sql"
  7. "entgo.io/ent/dialect/sql/sqlgraph"
  8. )
  9. const (
  10. // Label holds the string label denoting the sopnode type in the database.
  11. Label = "sop_node"
  12. // FieldID holds the string denoting the id field in the database.
  13. FieldID = "id"
  14. // FieldCreatedAt holds the string denoting the created_at field in the database.
  15. FieldCreatedAt = "created_at"
  16. // FieldUpdatedAt holds the string denoting the updated_at field in the database.
  17. FieldUpdatedAt = "updated_at"
  18. // FieldStatus holds the string denoting the status field in the database.
  19. FieldStatus = "status"
  20. // FieldDeletedAt holds the string denoting the deleted_at field in the database.
  21. FieldDeletedAt = "deleted_at"
  22. // FieldStageID holds the string denoting the stage_id field in the database.
  23. FieldStageID = "stage_id"
  24. // FieldParentID holds the string denoting the parent_id field in the database.
  25. FieldParentID = "parent_id"
  26. // FieldName holds the string denoting the name field in the database.
  27. FieldName = "name"
  28. // FieldConditionType holds the string denoting the condition_type field in the database.
  29. FieldConditionType = "condition_type"
  30. // FieldConditionList holds the string denoting the condition_list field in the database.
  31. FieldConditionList = "condition_list"
  32. // FieldActionMessage holds the string denoting the action_message field in the database.
  33. FieldActionMessage = "action_message"
  34. // FieldActionLabel holds the string denoting the action_label field in the database.
  35. FieldActionLabel = "action_label"
  36. // EdgeSopStage holds the string denoting the sop_stage edge name in mutations.
  37. EdgeSopStage = "sop_stage"
  38. // EdgeNodeMessages holds the string denoting the node_messages edge name in mutations.
  39. EdgeNodeMessages = "node_messages"
  40. // Table holds the table name of the sopnode in the database.
  41. Table = "sop_node"
  42. // SopStageTable is the table that holds the sop_stage relation/edge.
  43. SopStageTable = "sop_node"
  44. // SopStageInverseTable is the table name for the SopStage entity.
  45. // It exists in this package in order to avoid circular dependency with the "sopstage" package.
  46. SopStageInverseTable = "sop_stage"
  47. // SopStageColumn is the table column denoting the sop_stage relation/edge.
  48. SopStageColumn = "stage_id"
  49. // NodeMessagesTable is the table that holds the node_messages relation/edge.
  50. NodeMessagesTable = "message_records"
  51. // NodeMessagesInverseTable is the table name for the MessageRecords entity.
  52. // It exists in this package in order to avoid circular dependency with the "messagerecords" package.
  53. NodeMessagesInverseTable = "message_records"
  54. // NodeMessagesColumn is the table column denoting the node_messages relation/edge.
  55. NodeMessagesColumn = "sub_source_id"
  56. )
  57. // Columns holds all SQL columns for sopnode fields.
  58. var Columns = []string{
  59. FieldID,
  60. FieldCreatedAt,
  61. FieldUpdatedAt,
  62. FieldStatus,
  63. FieldDeletedAt,
  64. FieldStageID,
  65. FieldParentID,
  66. FieldName,
  67. FieldConditionType,
  68. FieldConditionList,
  69. FieldActionMessage,
  70. FieldActionLabel,
  71. }
  72. // ValidColumn reports if the column name is valid (part of the table columns).
  73. func ValidColumn(column string) bool {
  74. for i := range Columns {
  75. if column == Columns[i] {
  76. return true
  77. }
  78. }
  79. return false
  80. }
  81. // Note that the variables below are initialized by the runtime
  82. // package on the initialization of the application. Therefore,
  83. // it should be imported in the main as follows:
  84. //
  85. // import _ "wechat-api/ent/runtime"
  86. var (
  87. Hooks [1]ent.Hook
  88. Interceptors [1]ent.Interceptor
  89. // DefaultCreatedAt holds the default value on creation for the "created_at" field.
  90. DefaultCreatedAt func() time.Time
  91. // DefaultUpdatedAt holds the default value on creation for the "updated_at" field.
  92. DefaultUpdatedAt func() time.Time
  93. // UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field.
  94. UpdateDefaultUpdatedAt func() time.Time
  95. // DefaultStatus holds the default value on creation for the "status" field.
  96. DefaultStatus uint8
  97. // DefaultName holds the default value on creation for the "name" field.
  98. DefaultName string
  99. // DefaultConditionType holds the default value on creation for the "condition_type" field.
  100. DefaultConditionType int
  101. )
  102. // OrderOption defines the ordering options for the SopNode queries.
  103. type OrderOption func(*sql.Selector)
  104. // ByID orders the results by the id field.
  105. func ByID(opts ...sql.OrderTermOption) OrderOption {
  106. return sql.OrderByField(FieldID, opts...).ToFunc()
  107. }
  108. // ByCreatedAt orders the results by the created_at field.
  109. func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption {
  110. return sql.OrderByField(FieldCreatedAt, opts...).ToFunc()
  111. }
  112. // ByUpdatedAt orders the results by the updated_at field.
  113. func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption {
  114. return sql.OrderByField(FieldUpdatedAt, opts...).ToFunc()
  115. }
  116. // ByStatus orders the results by the status field.
  117. func ByStatus(opts ...sql.OrderTermOption) OrderOption {
  118. return sql.OrderByField(FieldStatus, opts...).ToFunc()
  119. }
  120. // ByDeletedAt orders the results by the deleted_at field.
  121. func ByDeletedAt(opts ...sql.OrderTermOption) OrderOption {
  122. return sql.OrderByField(FieldDeletedAt, opts...).ToFunc()
  123. }
  124. // ByStageID orders the results by the stage_id field.
  125. func ByStageID(opts ...sql.OrderTermOption) OrderOption {
  126. return sql.OrderByField(FieldStageID, opts...).ToFunc()
  127. }
  128. // ByParentID orders the results by the parent_id field.
  129. func ByParentID(opts ...sql.OrderTermOption) OrderOption {
  130. return sql.OrderByField(FieldParentID, opts...).ToFunc()
  131. }
  132. // ByName orders the results by the name field.
  133. func ByName(opts ...sql.OrderTermOption) OrderOption {
  134. return sql.OrderByField(FieldName, opts...).ToFunc()
  135. }
  136. // ByConditionType orders the results by the condition_type field.
  137. func ByConditionType(opts ...sql.OrderTermOption) OrderOption {
  138. return sql.OrderByField(FieldConditionType, opts...).ToFunc()
  139. }
  140. // BySopStageField orders the results by sop_stage field.
  141. func BySopStageField(field string, opts ...sql.OrderTermOption) OrderOption {
  142. return func(s *sql.Selector) {
  143. sqlgraph.OrderByNeighborTerms(s, newSopStageStep(), sql.OrderByField(field, opts...))
  144. }
  145. }
  146. // ByNodeMessagesCount orders the results by node_messages count.
  147. func ByNodeMessagesCount(opts ...sql.OrderTermOption) OrderOption {
  148. return func(s *sql.Selector) {
  149. sqlgraph.OrderByNeighborsCount(s, newNodeMessagesStep(), opts...)
  150. }
  151. }
  152. // ByNodeMessages orders the results by node_messages terms.
  153. func ByNodeMessages(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption {
  154. return func(s *sql.Selector) {
  155. sqlgraph.OrderByNeighborTerms(s, newNodeMessagesStep(), append([]sql.OrderTerm{term}, terms...)...)
  156. }
  157. }
  158. func newSopStageStep() *sqlgraph.Step {
  159. return sqlgraph.NewStep(
  160. sqlgraph.From(Table, FieldID),
  161. sqlgraph.To(SopStageInverseTable, FieldID),
  162. sqlgraph.Edge(sqlgraph.M2O, true, SopStageTable, SopStageColumn),
  163. )
  164. }
  165. func newNodeMessagesStep() *sqlgraph.Step {
  166. return sqlgraph.NewStep(
  167. sqlgraph.From(Table, FieldID),
  168. sqlgraph.To(NodeMessagesInverseTable, FieldID),
  169. sqlgraph.Edge(sqlgraph.O2M, false, NodeMessagesTable, NodeMessagesColumn),
  170. )
  171. }