将仓储层/基础设施改为 Ent + 原生 SQL 执行路径,并移除 AutoMigrate 与 GORM 依赖。 重构内容包括: - 仓储层改用 Ent/SQL(含 usage_log/account 等复杂查询),统一错误映射 - 基础设施与 setup 初始化切换为 Ent + SQL migrations - 集成测试与 fixtures 迁移到 Ent 事务模型 - 清理遗留 GORM 模型/依赖,补充迁移与文档说明 - 增加根目录 Makefile 便于前后端编译 测试: - go test -tags unit ./... - go test -tags integration ./...
124 lines
4.2 KiB
Go
124 lines
4.2 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package accountgroup
|
|
|
|
import (
|
|
"time"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
)
|
|
|
|
const (
|
|
// Label holds the string label denoting the accountgroup type in the database.
|
|
Label = "account_group"
|
|
// FieldAccountID holds the string denoting the account_id field in the database.
|
|
FieldAccountID = "account_id"
|
|
// FieldGroupID holds the string denoting the group_id field in the database.
|
|
FieldGroupID = "group_id"
|
|
// FieldPriority holds the string denoting the priority field in the database.
|
|
FieldPriority = "priority"
|
|
// FieldCreatedAt holds the string denoting the created_at field in the database.
|
|
FieldCreatedAt = "created_at"
|
|
// EdgeAccount holds the string denoting the account edge name in mutations.
|
|
EdgeAccount = "account"
|
|
// EdgeGroup holds the string denoting the group edge name in mutations.
|
|
EdgeGroup = "group"
|
|
// AccountFieldID holds the string denoting the ID field of the Account.
|
|
AccountFieldID = "id"
|
|
// GroupFieldID holds the string denoting the ID field of the Group.
|
|
GroupFieldID = "id"
|
|
// Table holds the table name of the accountgroup in the database.
|
|
Table = "account_groups"
|
|
// AccountTable is the table that holds the account relation/edge.
|
|
AccountTable = "account_groups"
|
|
// AccountInverseTable is the table name for the Account entity.
|
|
// It exists in this package in order to avoid circular dependency with the "account" package.
|
|
AccountInverseTable = "accounts"
|
|
// AccountColumn is the table column denoting the account relation/edge.
|
|
AccountColumn = "account_id"
|
|
// GroupTable is the table that holds the group relation/edge.
|
|
GroupTable = "account_groups"
|
|
// GroupInverseTable is the table name for the Group entity.
|
|
// It exists in this package in order to avoid circular dependency with the "group" package.
|
|
GroupInverseTable = "groups"
|
|
// GroupColumn is the table column denoting the group relation/edge.
|
|
GroupColumn = "group_id"
|
|
)
|
|
|
|
// Columns holds all SQL columns for accountgroup fields.
|
|
var Columns = []string{
|
|
FieldAccountID,
|
|
FieldGroupID,
|
|
FieldPriority,
|
|
FieldCreatedAt,
|
|
}
|
|
|
|
// 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
|
|
}
|
|
|
|
var (
|
|
// DefaultPriority holds the default value on creation for the "priority" field.
|
|
DefaultPriority int
|
|
// DefaultCreatedAt holds the default value on creation for the "created_at" field.
|
|
DefaultCreatedAt func() time.Time
|
|
)
|
|
|
|
// OrderOption defines the ordering options for the AccountGroup queries.
|
|
type OrderOption func(*sql.Selector)
|
|
|
|
// ByAccountID orders the results by the account_id field.
|
|
func ByAccountID(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldAccountID, opts...).ToFunc()
|
|
}
|
|
|
|
// ByGroupID orders the results by the group_id field.
|
|
func ByGroupID(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldGroupID, opts...).ToFunc()
|
|
}
|
|
|
|
// ByPriority orders the results by the priority field.
|
|
func ByPriority(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldPriority, opts...).ToFunc()
|
|
}
|
|
|
|
// ByCreatedAt orders the results by the created_at field.
|
|
func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldCreatedAt, opts...).ToFunc()
|
|
}
|
|
|
|
// ByAccountField orders the results by account field.
|
|
func ByAccountField(field string, opts ...sql.OrderTermOption) OrderOption {
|
|
return func(s *sql.Selector) {
|
|
sqlgraph.OrderByNeighborTerms(s, newAccountStep(), sql.OrderByField(field, opts...))
|
|
}
|
|
}
|
|
|
|
// ByGroupField orders the results by group field.
|
|
func ByGroupField(field string, opts ...sql.OrderTermOption) OrderOption {
|
|
return func(s *sql.Selector) {
|
|
sqlgraph.OrderByNeighborTerms(s, newGroupStep(), sql.OrderByField(field, opts...))
|
|
}
|
|
}
|
|
func newAccountStep() *sqlgraph.Step {
|
|
return sqlgraph.NewStep(
|
|
sqlgraph.From(Table, AccountColumn),
|
|
sqlgraph.To(AccountInverseTable, AccountFieldID),
|
|
sqlgraph.Edge(sqlgraph.M2O, false, AccountTable, AccountColumn),
|
|
)
|
|
}
|
|
func newGroupStep() *sqlgraph.Step {
|
|
return sqlgraph.NewStep(
|
|
sqlgraph.From(Table, GroupColumn),
|
|
sqlgraph.To(GroupInverseTable, GroupFieldID),
|
|
sqlgraph.Edge(sqlgraph.M2O, false, GroupTable, GroupColumn),
|
|
)
|
|
}
|