package model

import (
	"gorm.io/gorm"
)

type KillaraCustomerExchangeModel struct {
	// fields ...
	db        *gorm.DB
	TableName string // 表名
}