mirror of
				https://gitee.com/dromara/mayfly-go
				synced 2025-11-04 00:10:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			158 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			158 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package sqlstmt
 | 
						|
 | 
						|
type (
 | 
						|
	IInsertStmt interface {
 | 
						|
		isInsert()
 | 
						|
	}
 | 
						|
 | 
						|
	InsertStmt struct {
 | 
						|
		*Node
 | 
						|
 | 
						|
		TableName *TableName
 | 
						|
	}
 | 
						|
)
 | 
						|
 | 
						|
func (*InsertStmt) isInsert() {}
 |