payrecharge.go 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. // Code generated by ent, DO NOT EDIT.
  2. package payrecharge
  3. import (
  4. "time"
  5. "entgo.io/ent"
  6. "entgo.io/ent/dialect/sql"
  7. )
  8. const (
  9. // Label holds the string label denoting the payrecharge type in the database.
  10. Label = "pay_recharge"
  11. // FieldID holds the string denoting the id field in the database.
  12. FieldID = "id"
  13. // FieldCreatedAt holds the string denoting the created_at field in the database.
  14. FieldCreatedAt = "created_at"
  15. // FieldUpdatedAt holds the string denoting the updated_at field in the database.
  16. FieldUpdatedAt = "updated_at"
  17. // FieldDeletedAt holds the string denoting the deleted_at field in the database.
  18. FieldDeletedAt = "deleted_at"
  19. // FieldUserID holds the string denoting the user_id field in the database.
  20. FieldUserID = "user_id"
  21. // FieldNumber holds the string denoting the number field in the database.
  22. FieldNumber = "number"
  23. // FieldStatus holds the string denoting the status field in the database.
  24. FieldStatus = "status"
  25. // FieldMoney holds the string denoting the money field in the database.
  26. FieldMoney = "money"
  27. // FieldOutTradeNo holds the string denoting the out_trade_no field in the database.
  28. FieldOutTradeNo = "out_trade_no"
  29. // FieldOrganizationID holds the string denoting the organization_id field in the database.
  30. FieldOrganizationID = "organization_id"
  31. // Table holds the table name of the payrecharge in the database.
  32. Table = "pay_recharge"
  33. )
  34. // Columns holds all SQL columns for payrecharge fields.
  35. var Columns = []string{
  36. FieldID,
  37. FieldCreatedAt,
  38. FieldUpdatedAt,
  39. FieldDeletedAt,
  40. FieldUserID,
  41. FieldNumber,
  42. FieldStatus,
  43. FieldMoney,
  44. FieldOutTradeNo,
  45. FieldOrganizationID,
  46. }
  47. // ValidColumn reports if the column name is valid (part of the table columns).
  48. func ValidColumn(column string) bool {
  49. for i := range Columns {
  50. if column == Columns[i] {
  51. return true
  52. }
  53. }
  54. return false
  55. }
  56. // Note that the variables below are initialized by the runtime
  57. // package on the initialization of the application. Therefore,
  58. // it should be imported in the main as follows:
  59. //
  60. // import _ "wechat-api/ent/runtime"
  61. var (
  62. Hooks [1]ent.Hook
  63. Interceptors [1]ent.Interceptor
  64. // DefaultCreatedAt holds the default value on creation for the "created_at" field.
  65. DefaultCreatedAt func() time.Time
  66. // DefaultUpdatedAt holds the default value on creation for the "updated_at" field.
  67. DefaultUpdatedAt func() time.Time
  68. // UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field.
  69. UpdateDefaultUpdatedAt func() time.Time
  70. // UserIDValidator is a validator for the "user_id" field. It is called by the builders before save.
  71. UserIDValidator func(string) error
  72. // DefaultNumber holds the default value on creation for the "number" field.
  73. DefaultNumber float32
  74. // DefaultStatus holds the default value on creation for the "status" field.
  75. DefaultStatus int
  76. // StatusValidator is a validator for the "status" field. It is called by the builders before save.
  77. StatusValidator func(int) error
  78. // DefaultMoney holds the default value on creation for the "money" field.
  79. DefaultMoney float32
  80. // DefaultOutTradeNo holds the default value on creation for the "out_trade_no" field.
  81. DefaultOutTradeNo string
  82. // DefaultOrganizationID holds the default value on creation for the "organization_id" field.
  83. DefaultOrganizationID uint64
  84. // OrganizationIDValidator is a validator for the "organization_id" field. It is called by the builders before save.
  85. OrganizationIDValidator func(uint64) error
  86. )
  87. // OrderOption defines the ordering options for the PayRecharge queries.
  88. type OrderOption func(*sql.Selector)
  89. // ByID orders the results by the id field.
  90. func ByID(opts ...sql.OrderTermOption) OrderOption {
  91. return sql.OrderByField(FieldID, opts...).ToFunc()
  92. }
  93. // ByCreatedAt orders the results by the created_at field.
  94. func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption {
  95. return sql.OrderByField(FieldCreatedAt, opts...).ToFunc()
  96. }
  97. // ByUpdatedAt orders the results by the updated_at field.
  98. func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption {
  99. return sql.OrderByField(FieldUpdatedAt, opts...).ToFunc()
  100. }
  101. // ByDeletedAt orders the results by the deleted_at field.
  102. func ByDeletedAt(opts ...sql.OrderTermOption) OrderOption {
  103. return sql.OrderByField(FieldDeletedAt, opts...).ToFunc()
  104. }
  105. // ByUserID orders the results by the user_id field.
  106. func ByUserID(opts ...sql.OrderTermOption) OrderOption {
  107. return sql.OrderByField(FieldUserID, opts...).ToFunc()
  108. }
  109. // ByNumber orders the results by the number field.
  110. func ByNumber(opts ...sql.OrderTermOption) OrderOption {
  111. return sql.OrderByField(FieldNumber, opts...).ToFunc()
  112. }
  113. // ByStatus orders the results by the status field.
  114. func ByStatus(opts ...sql.OrderTermOption) OrderOption {
  115. return sql.OrderByField(FieldStatus, opts...).ToFunc()
  116. }
  117. // ByMoney orders the results by the money field.
  118. func ByMoney(opts ...sql.OrderTermOption) OrderOption {
  119. return sql.OrderByField(FieldMoney, opts...).ToFunc()
  120. }
  121. // ByOutTradeNo orders the results by the out_trade_no field.
  122. func ByOutTradeNo(opts ...sql.OrderTermOption) OrderOption {
  123. return sql.OrderByField(FieldOutTradeNo, opts...).ToFunc()
  124. }
  125. // ByOrganizationID orders the results by the organization_id field.
  126. func ByOrganizationID(opts ...sql.OrderTermOption) OrderOption {
  127. return sql.OrderByField(FieldOrganizationID, opts...).ToFunc()
  128. }