19cc7a778c
- Deleted old gRPC service definitions in `game_grpc.pb.go` and `public.go`. - Added new API server implementations for objectstory, player, and shop services. - Introduced configuration files for new APIs in `etc/*.yaml`. - Created main entry points for each service in `objectstory.go`, `player.go`, and `shop.go`. - Removed unused user update handler and user API files. - Added utility functions for context management and HTTP header parsing. - Introduced PostgreSQL backup configuration in `backup/postgreSql.yaml`.
99 lines
3.2 KiB
Go
99 lines
3.2 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package wallettransactions
|
|
|
|
import (
|
|
"entgo.io/ent/dialect/sql"
|
|
)
|
|
|
|
const (
|
|
// Label holds the string label denoting the wallettransactions type in the database.
|
|
Label = "wallet_transactions"
|
|
// FieldID holds the string denoting the id field in the database.
|
|
FieldID = "id"
|
|
// FieldUserID holds the string denoting the user_id field in the database.
|
|
FieldUserID = "user_id"
|
|
// FieldType holds the string denoting the type field in the database.
|
|
FieldType = "type"
|
|
// FieldAmount holds the string denoting the amount field in the database.
|
|
FieldAmount = "amount"
|
|
// FieldBalanceAfter holds the string denoting the balance_after field in the database.
|
|
FieldBalanceAfter = "balance_after"
|
|
// FieldDescription holds the string denoting the description field in the database.
|
|
FieldDescription = "description"
|
|
// FieldOrderID holds the string denoting the order_id field in the database.
|
|
FieldOrderID = "order_id"
|
|
// FieldCreatedAt holds the string denoting the created_at field in the database.
|
|
FieldCreatedAt = "created_at"
|
|
// FieldSearchText holds the string denoting the search_text field in the database.
|
|
FieldSearchText = "search_text"
|
|
// Table holds the table name of the wallettransactions in the database.
|
|
Table = "wallet_transactions"
|
|
)
|
|
|
|
// Columns holds all SQL columns for wallettransactions fields.
|
|
var Columns = []string{
|
|
FieldID,
|
|
FieldUserID,
|
|
FieldType,
|
|
FieldAmount,
|
|
FieldBalanceAfter,
|
|
FieldDescription,
|
|
FieldOrderID,
|
|
FieldCreatedAt,
|
|
FieldSearchText,
|
|
}
|
|
|
|
// ValidColumn reports if the column name is valid (part of the table columns).
|
|
func ValidColumn(column string) bool {
|
|
for i := range Columns {
|
|
if column == Columns[i] {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
// OrderOption defines the ordering options for the WalletTransactions queries.
|
|
type OrderOption func(*sql.Selector)
|
|
|
|
// ByID orders the results by the id field.
|
|
func ByID(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldID, opts...).ToFunc()
|
|
}
|
|
|
|
// ByUserID orders the results by the user_id field.
|
|
func ByUserID(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldUserID, opts...).ToFunc()
|
|
}
|
|
|
|
// ByType orders the results by the type field.
|
|
func ByType(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldType, opts...).ToFunc()
|
|
}
|
|
|
|
// ByAmount orders the results by the amount field.
|
|
func ByAmount(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldAmount, opts...).ToFunc()
|
|
}
|
|
|
|
// ByBalanceAfter orders the results by the balance_after field.
|
|
func ByBalanceAfter(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldBalanceAfter, opts...).ToFunc()
|
|
}
|
|
|
|
// ByOrderID orders the results by the order_id field.
|
|
func ByOrderID(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldOrderID, opts...).ToFunc()
|
|
}
|
|
|
|
// ByCreatedAt orders the results by the created_at field.
|
|
func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldCreatedAt, opts...).ToFunc()
|
|
}
|
|
|
|
// BySearchText orders the results by the search_text field.
|
|
func BySearchText(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldSearchText, opts...).ToFunc()
|
|
}
|