sync_src_table.go 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. // =================================================================================
  2. // This is auto-generated by GoFrame CLI tool only once. Fill this file as you wish.
  3. // =================================================================================
  4. package dao
  5. import (
  6. "gfast/app/system/dao/internal"
  7. "github.com/gogf/gf/os/gtime"
  8. )
  9. // syncSrcTableDao is the manager for logic model data accessing
  10. // and custom defined data operations functions management. You can define
  11. // methods on it to extend its functionality as you wish.
  12. type syncSrcTableDao struct {
  13. *internal.SyncSrcTableDao
  14. }
  15. var (
  16. // SyncSrcTable is globally public accessible object for table sync_src_table operations.
  17. SyncSrcTable syncSrcTableDao
  18. )
  19. func init() {
  20. SyncSrcTable = syncSrcTableDao{
  21. internal.NewSyncSrcTableDao(),
  22. }
  23. }
  24. // Fill with you ideas below.
  25. type SyncSrcTableParams struct {
  26. CreateDate *gtime.Time `orm:"create_date" json:"createDate"` //
  27. WriteDate *gtime.Time `orm:"write_date" json:"writeDate"` //
  28. TaskId int64 `orm:"task_id" json:"taskId"` //
  29. DbType string `orm:"db_type" json:"dbType"` //
  30. DbName string `orm:"db_name" json:"dbName"` //
  31. TableName string `orm:"table_name" json:"tableName"` //
  32. PkFiled string `orm:"pk_filed" json:"pkFiled"` //
  33. }