12345678910111213141516171819202122232425 |
- // ==========================================================================
- // GFast自动生成dao操作代码,无需手动修改,重新生成不会自动覆盖.
- // 生成日期:2023-12-04 08:46:15
- // 生成路径: gfast/app/gen/dao/jyapi_api.go
- // 生成人:ren
- // ==========================================================================
- package dao
- import (
- "jylua-api/internal/dao/internal"
- )
- // jyapiApiDao is the manager for logic model data accessing and custom defined data operations functions management.
- // You can define custom methods on it to extend its functionality as you wish.
- type jyapiApiDao struct {
- *internal.JyapiApiDao
- }
- var (
- // JyapiApi is globally public accessible object for table tools_gen_table operations.
- JyapiApi = jyapiApiDao{
- internal.NewJyapiApiDao(),
- }
- )
|