Documentation
¶
Index ¶
- type AdminDao
- type AdminRoleDao
- type ConfigBaiduDao
- type ConfigDao
- type ConfigLevelDao
- type ConfigMidjourneyDao
- type ConfigOpenaiDao
- type ConfigPayDao
- type ConfigPayQrDao
- type ConfigWalletDao
- type ConversationDao
- type ConversationMidjourneyDao
- type DomainCertDao
- type DomainCertFlowDao
- type EmailCodeDao
- type FileMidjourneyDao
- type HandOutErrorFlowDao
- type LogOperationDao
- type PayFlowDao
- type QueueMidjourneyDao
- type ShopGoodsDao
- type ShopOrderDao
- type ShopOrderGoodsDao
- type TopicDao
- type UserDao
- type UserInfoDao
- type UserLevelFlowDao
- type WalletDao
- type WalletFlowBalanceDao
- type WalletFlowGpt3Dao
- type WalletFlowGpt4Dao
- type WalletFlowMidjourneyDao
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AdminDao ¶
type AdminDao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns adminColumns // Columns contains all the columns of Table that for convenient usage. }
AdminDao is the manager for logic model data accessing and custom defined data operations functions management.
func NewAdminDao ¶
func NewAdminDao() *AdminDao
type AdminRoleDao ¶
type AdminRoleDao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns adminRoleColumns // Columns contains all the columns of Table that for convenient usage. }
AdminRoleDao is the manager for logic model data accessing and custom defined data operations functions management.
func NewAdminRoleDao ¶
func NewAdminRoleDao() *AdminRoleDao
type ConfigBaiduDao ¶
type ConfigBaiduDao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns configBaiduColumns // Columns contains all the columns of Table that for convenient usage. }
ConfigBaiduDao is the manager for logic model data accessing and custom defined data operations functions management.
func NewConfigBaiduDao ¶
func NewConfigBaiduDao() *ConfigBaiduDao
type ConfigDao ¶
type ConfigDao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns configColumns // Columns contains all the columns of Table that for convenient usage. }
ConfigDao is the manager for logic model data accessing and custom defined data operations functions management.
func NewConfigDao ¶
func NewConfigDao() *ConfigDao
type ConfigLevelDao ¶
type ConfigLevelDao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns configLevelColumns // Columns contains all the columns of Table that for convenient usage. }
ConfigLevelDao is the manager for logic model data accessing and custom defined data operations functions management.
func NewConfigLevelDao ¶
func NewConfigLevelDao() *ConfigLevelDao
type ConfigMidjourneyDao ¶
type ConfigMidjourneyDao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns configMidjourneyColumns // Columns contains all the columns of Table that for convenient usage. }
ConfigMidjourneyDao is the manager for logic model data accessing and custom defined data operations functions management.
func NewConfigMidjourneyDao ¶
func NewConfigMidjourneyDao() *ConfigMidjourneyDao
type ConfigOpenaiDao ¶
type ConfigOpenaiDao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns configOpenaiColumns // Columns contains all the columns of Table that for convenient usage. }
ConfigOpenaiDao is the manager for logic model data accessing and custom defined data operations functions management.
func NewConfigOpenaiDao ¶
func NewConfigOpenaiDao() *ConfigOpenaiDao
type ConfigPayDao ¶
type ConfigPayDao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns configPayColumns // Columns contains all the columns of Table that for convenient usage. }
ConfigPayDao is the manager for logic model data accessing and custom defined data operations functions management.
func NewConfigPayDao ¶
func NewConfigPayDao() *ConfigPayDao
type ConfigPayQrDao ¶
type ConfigPayQrDao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns configPayQrColumns // Columns contains all the columns of Table that for convenient usage. }
ConfigPayQrDao is the manager for logic model data accessing and custom defined data operations functions management.
func NewConfigPayQrDao ¶
func NewConfigPayQrDao() *ConfigPayQrDao
type ConfigWalletDao ¶
type ConfigWalletDao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns configWalletColumns // Columns contains all the columns of Table that for convenient usage. }
ConfigWalletDao is the manager for logic model data accessing and custom defined data operations functions management.
func NewConfigWalletDao ¶
func NewConfigWalletDao() *ConfigWalletDao
type ConversationDao ¶
type ConversationDao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns conversationColumns // Columns contains all the columns of Table that for convenient usage. }
ConversationDao is the manager for logic model data accessing and custom defined data operations functions management.
func NewConversationDao ¶
func NewConversationDao() *ConversationDao
type ConversationMidjourneyDao ¶
type ConversationMidjourneyDao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns conversationMidjourneyColumns // Columns contains all the columns of Table that for convenient usage. }
ConversationMidjourneyDao is the manager for logic model data accessing and custom defined data operations functions management.
func NewConversationMidjourneyDao ¶
func NewConversationMidjourneyDao() *ConversationMidjourneyDao
type DomainCertDao ¶
type DomainCertDao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns domainCertColumns // Columns contains all the columns of Table that for convenient usage. }
DomainCertDao is the manager for logic model data accessing and custom defined data operations functions management.
func NewDomainCertDao ¶
func NewDomainCertDao() *DomainCertDao
type DomainCertFlowDao ¶
type DomainCertFlowDao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns domainCertFlowColumns // Columns contains all the columns of Table that for convenient usage. }
DomainCertFlowDao is the manager for logic model data accessing and custom defined data operations functions management.
func NewDomainCertFlowDao ¶
func NewDomainCertFlowDao() *DomainCertFlowDao
type EmailCodeDao ¶
type EmailCodeDao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns emailCodeColumns // Columns contains all the columns of Table that for convenient usage. }
EmailCodeDao is the manager for logic model data accessing and custom defined data operations functions management.
func NewEmailCodeDao ¶
func NewEmailCodeDao() *EmailCodeDao
type FileMidjourneyDao ¶
type FileMidjourneyDao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns fileMidjourneyColumns // Columns contains all the columns of Table that for convenient usage. }
FileMidjourneyDao is the manager for logic model data accessing and custom defined data operations functions management.
func NewFileMidjourneyDao ¶
func NewFileMidjourneyDao() *FileMidjourneyDao
type HandOutErrorFlowDao ¶
type HandOutErrorFlowDao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns handOutErrorFlowColumns // Columns contains all the columns of Table that for convenient usage. }
HandOutErrorFlowDao is the manager for logic model data accessing and custom defined data operations functions management.
func NewHandOutErrorFlowDao ¶
func NewHandOutErrorFlowDao() *HandOutErrorFlowDao
type LogOperationDao ¶
type LogOperationDao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns logOperationColumns // Columns contains all the columns of Table that for convenient usage. }
LogOperationDao is the manager for logic model data accessing and custom defined data operations functions management.
func NewLogOperationDao ¶
func NewLogOperationDao() *LogOperationDao
type PayFlowDao ¶
type PayFlowDao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns payFlowColumns // Columns contains all the columns of Table that for convenient usage. }
PayFlowDao is the manager for logic model data accessing and custom defined data operations functions management.
func NewPayFlowDao ¶
func NewPayFlowDao() *PayFlowDao
type QueueMidjourneyDao ¶
type QueueMidjourneyDao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns queueMidjourneyColumns // Columns contains all the columns of Table that for convenient usage. }
QueueMidjourneyDao is the manager for logic model data accessing and custom defined data operations functions management.
func NewQueueMidjourneyDao ¶
func NewQueueMidjourneyDao() *QueueMidjourneyDao
type ShopGoodsDao ¶
type ShopGoodsDao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns shopGoodsColumns // Columns contains all the columns of Table that for convenient usage. }
ShopGoodsDao is the manager for logic model data accessing and custom defined data operations functions management.
func NewShopGoodsDao ¶
func NewShopGoodsDao() *ShopGoodsDao
type ShopOrderDao ¶
type ShopOrderDao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns shopOrderColumns // Columns contains all the columns of Table that for convenient usage. }
ShopOrderDao is the manager for logic model data accessing and custom defined data operations functions management.
func NewShopOrderDao ¶
func NewShopOrderDao() *ShopOrderDao
type ShopOrderGoodsDao ¶
type ShopOrderGoodsDao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns shopOrderGoodsColumns // Columns contains all the columns of Table that for convenient usage. }
ShopOrderGoodsDao is the manager for logic model data accessing and custom defined data operations functions management.
func NewShopOrderGoodsDao ¶
func NewShopOrderGoodsDao() *ShopOrderGoodsDao
type TopicDao ¶
type TopicDao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns topicColumns // Columns contains all the columns of Table that for convenient usage. }
TopicDao is the manager for logic model data accessing and custom defined data operations functions management.
func NewTopicDao ¶
func NewTopicDao() *TopicDao
type UserDao ¶
type UserDao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns userColumns // Columns contains all the columns of Table that for convenient usage. }
UserDao is the manager for logic model data accessing and custom defined data operations functions management.
func NewUserDao ¶
func NewUserDao() *UserDao
type UserInfoDao ¶
type UserInfoDao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns userInfoColumns // Columns contains all the columns of Table that for convenient usage. }
UserInfoDao is the manager for logic model data accessing and custom defined data operations functions management.
func NewUserInfoDao ¶
func NewUserInfoDao() *UserInfoDao
type UserLevelFlowDao ¶
type UserLevelFlowDao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns userLevelFlowColumns // Columns contains all the columns of Table that for convenient usage. }
UserLevelFlowDao is the manager for logic model data accessing and custom defined data operations functions management.
func NewUserLevelFlowDao ¶
func NewUserLevelFlowDao() *UserLevelFlowDao
type WalletDao ¶
type WalletDao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns walletColumns // Columns contains all the columns of Table that for convenient usage. }
WalletDao is the manager for logic model data accessing and custom defined data operations functions management.
func NewWalletDao ¶
func NewWalletDao() *WalletDao
type WalletFlowBalanceDao ¶
type WalletFlowBalanceDao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns walletFlowBalanceColumns // Columns contains all the columns of Table that for convenient usage. }
WalletFlowBalanceDao is the manager for logic model data accessing and custom defined data operations functions management.
func NewWalletFlowBalanceDao ¶
func NewWalletFlowBalanceDao() *WalletFlowBalanceDao
type WalletFlowGpt3Dao ¶
type WalletFlowGpt3Dao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns walletFlowGpt3Columns // Columns contains all the columns of Table that for convenient usage. }
WalletFlowGpt3Dao is the manager for logic model data accessing and custom defined data operations functions management.
func NewWalletFlowGpt3Dao ¶
func NewWalletFlowGpt3Dao() *WalletFlowGpt3Dao
type WalletFlowGpt4Dao ¶
type WalletFlowGpt4Dao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns walletFlowGpt4Columns // Columns contains all the columns of Table that for convenient usage. }
WalletFlowGpt4Dao is the manager for logic model data accessing and custom defined data operations functions management.
func NewWalletFlowGpt4Dao ¶
func NewWalletFlowGpt4Dao() *WalletFlowGpt4Dao
type WalletFlowMidjourneyDao ¶
type WalletFlowMidjourneyDao struct { gmvc.M // M is the core and embedded struct that inherits all chaining operations from gdb.Model. DB gdb.DB // DB is the raw underlying database management object. Table string // Table is the table name of the DAO. Columns walletFlowMidjourneyColumns // Columns contains all the columns of Table that for convenient usage. }
WalletFlowMidjourneyDao is the manager for logic model data accessing and custom defined data operations functions management.
func NewWalletFlowMidjourneyDao ¶
func NewWalletFlowMidjourneyDao() *WalletFlowMidjourneyDao
Source Files
¶
- admin.go
- admin_role.go
- config.go
- config_baidu.go
- config_level.go
- config_midjourney.go
- config_openai.go
- config_pay.go
- config_pay_qr.go
- config_wallet.go
- conversation.go
- conversation_midjourney.go
- domain_cert.go
- domain_cert_flow.go
- email_code.go
- file_midjourney.go
- hand_out_error_flow.go
- log_operation.go
- pay_flow.go
- queue_midjourney.go
- shop_goods.go
- shop_order.go
- shop_order_goods.go
- topic.go
- user.go
- user_info.go
- user_level_flow.go
- wallet.go
- wallet_flow_balance.go
- wallet_flow_gpt_3.go
- wallet_flow_gpt_4.go
- wallet_flow_midjourney.go