|
@@ -0,0 +1,93 @@
|
|
|
|
+// ==========================================================================
|
|
|
|
+// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
|
|
+// ==========================================================================
|
|
|
|
+
|
|
|
|
+package internal
|
|
|
|
+
|
|
|
|
+import (
|
|
|
|
+ "context"
|
|
|
|
+
|
|
|
|
+ "github.com/gogf/gf/v2/database/gdb"
|
|
|
|
+ "github.com/gogf/gf/v2/frame/g"
|
|
|
|
+)
|
|
|
|
+
|
|
|
|
+// OrdersDao is the data access object for the table orders.
|
|
|
|
+type OrdersDao struct {
|
|
|
|
+ table string // table is the underlying table name of the DAO.
|
|
|
|
+ group string // group is the database configuration group name of the current DAO.
|
|
|
|
+ columns OrdersColumns // columns contains all the column names of Table for convenient usage.
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// OrdersColumns defines and stores column names for the table orders.
|
|
|
|
+type OrdersColumns struct {
|
|
|
|
+ Id string //
|
|
|
|
+ UserId string //
|
|
|
|
+ OrderNumber string //
|
|
|
|
+ Status string //
|
|
|
|
+ TotalAmount string //
|
|
|
|
+ CreatedAt string //
|
|
|
|
+ UpdatedAt string //
|
|
|
|
+ ShippedAt string //
|
|
|
|
+ DeliveredAt string //
|
|
|
|
+ PaymentStatus string //
|
|
|
|
+ ShippingAddress string //
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// ordersColumns holds the columns for the table orders.
|
|
|
|
+var ordersColumns = OrdersColumns{
|
|
|
|
+ Id: "id",
|
|
|
|
+ UserId: "user_id",
|
|
|
|
+ OrderNumber: "order_number",
|
|
|
|
+ Status: "status",
|
|
|
|
+ TotalAmount: "total_amount",
|
|
|
|
+ CreatedAt: "created_at",
|
|
|
|
+ UpdatedAt: "updated_at",
|
|
|
|
+ ShippedAt: "shipped_at",
|
|
|
|
+ DeliveredAt: "delivered_at",
|
|
|
|
+ PaymentStatus: "payment_status",
|
|
|
|
+ ShippingAddress: "shipping_address",
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// NewOrdersDao creates and returns a new DAO object for table data access.
|
|
|
|
+func NewOrdersDao() *OrdersDao {
|
|
|
|
+ return &OrdersDao{
|
|
|
|
+ group: "default",
|
|
|
|
+ table: "orders",
|
|
|
|
+ columns: ordersColumns,
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// DB retrieves and returns the underlying raw database management object of the current DAO.
|
|
|
|
+func (dao *OrdersDao) DB() gdb.DB {
|
|
|
|
+ return g.DB(dao.group)
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// Table returns the table name of the current DAO.
|
|
|
|
+func (dao *OrdersDao) Table() string {
|
|
|
|
+ return dao.table
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// Columns returns all column names of the current DAO.
|
|
|
|
+func (dao *OrdersDao) Columns() OrdersColumns {
|
|
|
|
+ return dao.columns
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// Group returns the database configuration group name of the current DAO.
|
|
|
|
+func (dao *OrdersDao) Group() string {
|
|
|
|
+ return dao.group
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// Ctx creates and returns a Model for the current DAO. It automatically sets the context for the current operation.
|
|
|
|
+func (dao *OrdersDao) Ctx(ctx context.Context) *gdb.Model {
|
|
|
|
+ return dao.DB().Model(dao.table).Safe().Ctx(ctx)
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// Transaction wraps the transaction logic using function f.
|
|
|
|
+// It rolls back the transaction and returns the error if function f returns a non-nil error.
|
|
|
|
+// It commits the transaction and returns nil if function f returns nil.
|
|
|
|
+//
|
|
|
|
+// Note: Do not commit or roll back the transaction in function f,
|
|
|
|
+// as it is automatically handled by this function.
|
|
|
|
+func (dao *OrdersDao) Transaction(ctx context.Context, f func(ctx context.Context, tx gdb.TX) error) (err error) {
|
|
|
|
+ return dao.Ctx(ctx).Transaction(ctx, f)
|
|
|
|
+}
|