mirror of
				https://gitee.com/dromara/mayfly-go
				synced 2025-11-04 08:20:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			461 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			461 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package entity
 | 
						|
 | 
						|
import "mayfly-go/pkg/model"
 | 
						|
 | 
						|
type MachineScript struct {
 | 
						|
	model.Model
 | 
						|
	Name        string `json:"name"`
 | 
						|
	MachineId   uint64 `json:"machineId"` // 机器id
 | 
						|
	Type        int    `json:"type"`
 | 
						|
	Description string `json:"description"`                           // 脚本描述
 | 
						|
	Params      string `json:"params"`                                // 参数列表json
 | 
						|
	Script      string `json:"script" gorm:"column:script;type:text"` // 脚本内容
 | 
						|
}
 |