mirror of
				https://gitee.com/dromara/mayfly-go
				synced 2025-11-04 00:10:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			239 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			239 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package entity
 | 
						|
 | 
						|
import (
 | 
						|
	"mayfly-go/pkg/model"
 | 
						|
)
 | 
						|
 | 
						|
type DbSql struct {
 | 
						|
	model.Model `orm:"-"`
 | 
						|
 | 
						|
	DbId uint64 `json:"dbId"`
 | 
						|
	Db   string `json:"db"`
 | 
						|
	Type int    `json:"type"` // 类型
 | 
						|
	Sql  string `json:"sql"`
 | 
						|
	Name string `json:"name"`
 | 
						|
}
 |