add sync_table

This commit is contained in:
crisis111
2021-10-19 11:46:25 +08:00
parent 63a05c5963
commit 10e0441a22
7 changed files with 166 additions and 0 deletions
@@ -0,0 +1,21 @@
// ==========================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// ==========================================================================
package internal
import (
"github.com/gogf/gf/os/gtime"
)
// SyncSrcTable is the golang structure for table sync_src_table.
type SyncSrcTable struct {
Id int64 `orm:"id" json:"id"` //
CreateDate *gtime.Time `orm:"create_date" json:"createDate"` //
WriteDate *gtime.Time `orm:"write_date" json:"writeDate"` //
TaskId int64 `orm:"task_id" json:"taskId"` //
DbType string `orm:"db_type" json:"dbType"` //
DbName string `orm:"db_name" json:"dbName"` //
TableName string `orm:"table_name" json:"tableName"` //
PkFiled string `orm:"pk_filed" json:"pkFiled"` //
}