sopnode.go 7.5 KB

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