define.go 117 Bytes
Newer Older
kzkzzzz's avatar
kzkzzzz committed
1 2 3 4 5 6 7 8 9
package mysql

// OpenClose 开启关闭
type OpenClose = uint8

const (
	OPEN  OpenClose = 1
	CLOSE OpenClose = 2
)