sopstage.go 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  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. // EdgeStageMessages holds the string denoting the stage_messages edge name in mutations.
  43. EdgeStageMessages = "stage_messages"
  44. // Table holds the table name of the sopstage in the database.
  45. Table = "sop_stage"
  46. // SopTaskTable is the table that holds the sop_task relation/edge.
  47. SopTaskTable = "sop_stage"
  48. // SopTaskInverseTable is the table name for the SopTask entity.
  49. // It exists in this package in order to avoid circular dependency with the "soptask" package.
  50. SopTaskInverseTable = "sop_task"
  51. // SopTaskColumn is the table column denoting the sop_task relation/edge.
  52. SopTaskColumn = "task_id"
  53. // StageNodesTable is the table that holds the stage_nodes relation/edge.
  54. StageNodesTable = "sop_node"
  55. // StageNodesInverseTable is the table name for the SopNode entity.
  56. // It exists in this package in order to avoid circular dependency with the "sopnode" package.
  57. StageNodesInverseTable = "sop_node"
  58. // StageNodesColumn is the table column denoting the stage_nodes relation/edge.
  59. StageNodesColumn = "stage_id"
  60. // StageMessagesTable is the table that holds the stage_messages relation/edge.
  61. StageMessagesTable = "message_records"
  62. // StageMessagesInverseTable is the table name for the MessageRecords entity.
  63. // It exists in this package in order to avoid circular dependency with the "messagerecords" package.
  64. StageMessagesInverseTable = "message_records"
  65. // StageMessagesColumn is the table column denoting the stage_messages relation/edge.
  66. StageMessagesColumn = "source_id"
  67. )
  68. // Columns holds all SQL columns for sopstage fields.
  69. var Columns = []string{
  70. FieldID,
  71. FieldCreatedAt,
  72. FieldUpdatedAt,
  73. FieldStatus,
  74. FieldDeletedAt,
  75. FieldTaskID,
  76. FieldName,
  77. FieldConditionType,
  78. FieldConditionOperator,
  79. FieldConditionList,
  80. FieldActionMessage,
  81. FieldActionLabel,
  82. FieldIndexSort,
  83. }
  84. // ValidColumn reports if the column name is valid (part of the table columns).
  85. func ValidColumn(column string) bool {
  86. for i := range Columns {
  87. if column == Columns[i] {
  88. return true
  89. }
  90. }
  91. return false
  92. }
  93. // Note that the variables below are initialized by the runtime
  94. // package on the initialization of the application. Therefore,
  95. // it should be imported in the main as follows:
  96. //
  97. // import _ "wechat-api/ent/runtime"
  98. var (
  99. Hooks [1]ent.Hook
  100. Interceptors [1]ent.Interceptor
  101. // DefaultCreatedAt holds the default value on creation for the "created_at" field.
  102. DefaultCreatedAt func() time.Time
  103. // DefaultUpdatedAt holds the default value on creation for the "updated_at" field.
  104. DefaultUpdatedAt func() time.Time
  105. // UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field.
  106. UpdateDefaultUpdatedAt func() time.Time
  107. // DefaultStatus holds the default value on creation for the "status" field.
  108. DefaultStatus uint8
  109. // DefaultName holds the default value on creation for the "name" field.
  110. DefaultName string
  111. // DefaultConditionType holds the default value on creation for the "condition_type" field.
  112. DefaultConditionType int
  113. // DefaultConditionOperator holds the default value on creation for the "condition_operator" field.
  114. DefaultConditionOperator int
  115. // DefaultIndexSort holds the default value on creation for the "index_sort" field.
  116. DefaultIndexSort int
  117. )
  118. // OrderOption defines the ordering options for the SopStage queries.
  119. type OrderOption func(*sql.Selector)
  120. // ByID orders the results by the id field.
  121. func ByID(opts ...sql.OrderTermOption) OrderOption {
  122. return sql.OrderByField(FieldID, opts...).ToFunc()
  123. }
  124. // ByCreatedAt orders the results by the created_at field.
  125. func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption {
  126. return sql.OrderByField(FieldCreatedAt, opts...).ToFunc()
  127. }
  128. // ByUpdatedAt orders the results by the updated_at field.
  129. func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption {
  130. return sql.OrderByField(FieldUpdatedAt, opts...).ToFunc()
  131. }
  132. // ByStatus orders the results by the status field.
  133. func ByStatus(opts ...sql.OrderTermOption) OrderOption {
  134. return sql.OrderByField(FieldStatus, opts...).ToFunc()
  135. }
  136. // ByDeletedAt orders the results by the deleted_at field.
  137. func ByDeletedAt(opts ...sql.OrderTermOption) OrderOption {
  138. return sql.OrderByField(FieldDeletedAt, opts...).ToFunc()
  139. }
  140. // ByTaskID orders the results by the task_id field.
  141. func ByTaskID(opts ...sql.OrderTermOption) OrderOption {
  142. return sql.OrderByField(FieldTaskID, opts...).ToFunc()
  143. }
  144. // ByName orders the results by the name field.
  145. func ByName(opts ...sql.OrderTermOption) OrderOption {
  146. return sql.OrderByField(FieldName, opts...).ToFunc()
  147. }
  148. // ByConditionType orders the results by the condition_type field.
  149. func ByConditionType(opts ...sql.OrderTermOption) OrderOption {
  150. return sql.OrderByField(FieldConditionType, opts...).ToFunc()
  151. }
  152. // ByConditionOperator orders the results by the condition_operator field.
  153. func ByConditionOperator(opts ...sql.OrderTermOption) OrderOption {
  154. return sql.OrderByField(FieldConditionOperator, opts...).ToFunc()
  155. }
  156. // ByIndexSort orders the results by the index_sort field.
  157. func ByIndexSort(opts ...sql.OrderTermOption) OrderOption {
  158. return sql.OrderByField(FieldIndexSort, opts...).ToFunc()
  159. }
  160. // BySopTaskField orders the results by sop_task field.
  161. func BySopTaskField(field string, opts ...sql.OrderTermOption) OrderOption {
  162. return func(s *sql.Selector) {
  163. sqlgraph.OrderByNeighborTerms(s, newSopTaskStep(), sql.OrderByField(field, opts...))
  164. }
  165. }
  166. // ByStageNodesCount orders the results by stage_nodes count.
  167. func ByStageNodesCount(opts ...sql.OrderTermOption) OrderOption {
  168. return func(s *sql.Selector) {
  169. sqlgraph.OrderByNeighborsCount(s, newStageNodesStep(), opts...)
  170. }
  171. }
  172. // ByStageNodes orders the results by stage_nodes terms.
  173. func ByStageNodes(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption {
  174. return func(s *sql.Selector) {
  175. sqlgraph.OrderByNeighborTerms(s, newStageNodesStep(), append([]sql.OrderTerm{term}, terms...)...)
  176. }
  177. }
  178. // ByStageMessagesCount orders the results by stage_messages count.
  179. func ByStageMessagesCount(opts ...sql.OrderTermOption) OrderOption {
  180. return func(s *sql.Selector) {
  181. sqlgraph.OrderByNeighborsCount(s, newStageMessagesStep(), opts...)
  182. }
  183. }
  184. // ByStageMessages orders the results by stage_messages terms.
  185. func ByStageMessages(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption {
  186. return func(s *sql.Selector) {
  187. sqlgraph.OrderByNeighborTerms(s, newStageMessagesStep(), append([]sql.OrderTerm{term}, terms...)...)
  188. }
  189. }
  190. func newSopTaskStep() *sqlgraph.Step {
  191. return sqlgraph.NewStep(
  192. sqlgraph.From(Table, FieldID),
  193. sqlgraph.To(SopTaskInverseTable, FieldID),
  194. sqlgraph.Edge(sqlgraph.M2O, true, SopTaskTable, SopTaskColumn),
  195. )
  196. }
  197. func newStageNodesStep() *sqlgraph.Step {
  198. return sqlgraph.NewStep(
  199. sqlgraph.From(Table, FieldID),
  200. sqlgraph.To(StageNodesInverseTable, FieldID),
  201. sqlgraph.Edge(sqlgraph.O2M, false, StageNodesTable, StageNodesColumn),
  202. )
  203. }
  204. func newStageMessagesStep() *sqlgraph.Step {
  205. return sqlgraph.NewStep(
  206. sqlgraph.From(Table, FieldID),
  207. sqlgraph.To(StageMessagesInverseTable, FieldID),
  208. sqlgraph.Edge(sqlgraph.O2M, false, StageMessagesTable, StageMessagesColumn),
  209. )
  210. }