sopstage.go 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. // Code generated by ent, DO NOT EDIT.
  2. package sopstage
  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 sopstage type in the database.
  11. Label = "sop_stage"
  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. // FieldTaskID holds the string denoting the task_id field in the database.
  23. FieldTaskID = "task_id"
  24. // FieldName holds the string denoting the name field in the database.
  25. FieldName = "name"
  26. // FieldConditionType holds the string denoting the condition_type field in the database.
  27. FieldConditionType = "condition_type"
  28. // FieldConditionOperator holds the string denoting the condition_operator field in the database.
  29. FieldConditionOperator = "condition_operator"
  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. // FieldIndexSort holds the string denoting the index_sort field in the database.
  37. FieldIndexSort = "index_sort"
  38. // EdgeSopTask holds the string denoting the sop_task edge name in mutations.
  39. EdgeSopTask = "sop_task"
  40. // EdgeStageNodes holds the string denoting the stage_nodes edge name in mutations.
  41. EdgeStageNodes = "stage_nodes"
  42. // Table holds the table name of the sopstage in the database.
  43. Table = "sop_stage"
  44. // SopTaskTable is the table that holds the sop_task relation/edge.
  45. SopTaskTable = "sop_stage"
  46. // SopTaskInverseTable is the table name for the SopTask entity.
  47. // It exists in this package in order to avoid circular dependency with the "soptask" package.
  48. SopTaskInverseTable = "sop_task"
  49. // SopTaskColumn is the table column denoting the sop_task relation/edge.
  50. SopTaskColumn = "task_id"
  51. // StageNodesTable is the table that holds the stage_nodes relation/edge.
  52. StageNodesTable = "sop_node"
  53. // StageNodesInverseTable is the table name for the SopNode entity.
  54. // It exists in this package in order to avoid circular dependency with the "sopnode" package.
  55. StageNodesInverseTable = "sop_node"
  56. // StageNodesColumn is the table column denoting the stage_nodes relation/edge.
  57. StageNodesColumn = "stage_id"
  58. )
  59. // Columns holds all SQL columns for sopstage fields.
  60. var Columns = []string{
  61. FieldID,
  62. FieldCreatedAt,
  63. FieldUpdatedAt,
  64. FieldStatus,
  65. FieldDeletedAt,
  66. FieldTaskID,
  67. FieldName,
  68. FieldConditionType,
  69. FieldConditionOperator,
  70. FieldConditionList,
  71. FieldActionMessage,
  72. FieldActionLabel,
  73. FieldIndexSort,
  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. // DefaultConditionOperator holds the default value on creation for the "condition_operator" field.
  105. DefaultConditionOperator int
  106. // DefaultIndexSort holds the default value on creation for the "index_sort" field.
  107. DefaultIndexSort int
  108. )
  109. // OrderOption defines the ordering options for the SopStage queries.
  110. type OrderOption func(*sql.Selector)
  111. // ByID orders the results by the id field.
  112. func ByID(opts ...sql.OrderTermOption) OrderOption {
  113. return sql.OrderByField(FieldID, opts...).ToFunc()
  114. }
  115. // ByCreatedAt orders the results by the created_at field.
  116. func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption {
  117. return sql.OrderByField(FieldCreatedAt, opts...).ToFunc()
  118. }
  119. // ByUpdatedAt orders the results by the updated_at field.
  120. func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption {
  121. return sql.OrderByField(FieldUpdatedAt, opts...).ToFunc()
  122. }
  123. // ByStatus orders the results by the status field.
  124. func ByStatus(opts ...sql.OrderTermOption) OrderOption {
  125. return sql.OrderByField(FieldStatus, opts...).ToFunc()
  126. }
  127. // ByDeletedAt orders the results by the deleted_at field.
  128. func ByDeletedAt(opts ...sql.OrderTermOption) OrderOption {
  129. return sql.OrderByField(FieldDeletedAt, opts...).ToFunc()
  130. }
  131. // ByTaskID orders the results by the task_id field.
  132. func ByTaskID(opts ...sql.OrderTermOption) OrderOption {
  133. return sql.OrderByField(FieldTaskID, opts...).ToFunc()
  134. }
  135. // ByName orders the results by the name field.
  136. func ByName(opts ...sql.OrderTermOption) OrderOption {
  137. return sql.OrderByField(FieldName, opts...).ToFunc()
  138. }
  139. // ByConditionType orders the results by the condition_type field.
  140. func ByConditionType(opts ...sql.OrderTermOption) OrderOption {
  141. return sql.OrderByField(FieldConditionType, opts...).ToFunc()
  142. }
  143. // ByConditionOperator orders the results by the condition_operator field.
  144. func ByConditionOperator(opts ...sql.OrderTermOption) OrderOption {
  145. return sql.OrderByField(FieldConditionOperator, opts...).ToFunc()
  146. }
  147. // ByIndexSort orders the results by the index_sort field.
  148. func ByIndexSort(opts ...sql.OrderTermOption) OrderOption {
  149. return sql.OrderByField(FieldIndexSort, opts...).ToFunc()
  150. }
  151. // BySopTaskField orders the results by sop_task field.
  152. func BySopTaskField(field string, opts ...sql.OrderTermOption) OrderOption {
  153. return func(s *sql.Selector) {
  154. sqlgraph.OrderByNeighborTerms(s, newSopTaskStep(), sql.OrderByField(field, opts...))
  155. }
  156. }
  157. // ByStageNodesCount orders the results by stage_nodes count.
  158. func ByStageNodesCount(opts ...sql.OrderTermOption) OrderOption {
  159. return func(s *sql.Selector) {
  160. sqlgraph.OrderByNeighborsCount(s, newStageNodesStep(), opts...)
  161. }
  162. }
  163. // ByStageNodes orders the results by stage_nodes terms.
  164. func ByStageNodes(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption {
  165. return func(s *sql.Selector) {
  166. sqlgraph.OrderByNeighborTerms(s, newStageNodesStep(), append([]sql.OrderTerm{term}, terms...)...)
  167. }
  168. }
  169. func newSopTaskStep() *sqlgraph.Step {
  170. return sqlgraph.NewStep(
  171. sqlgraph.From(Table, FieldID),
  172. sqlgraph.To(SopTaskInverseTable, FieldID),
  173. sqlgraph.Edge(sqlgraph.M2O, true, SopTaskTable, SopTaskColumn),
  174. )
  175. }
  176. func newStageNodesStep() *sqlgraph.Step {
  177. return sqlgraph.NewStep(
  178. sqlgraph.From(Table, FieldID),
  179. sqlgraph.To(StageNodesInverseTable, FieldID),
  180. sqlgraph.Edge(sqlgraph.O2M, false, StageNodesTable, StageNodesColumn),
  181. )
  182. }