jyapi_api.go 816 B

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