Files
public/sign/def.go
xxjwxc 0ac9cdd0af new
2020-05-25 00:35:02 +08:00

16 lines
330 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package sign
import "time"
const (
_sign_data = "_sign_data"
)
type Sign_client_tbl struct {
Id int `gorm:"primary_key"`
App_key string //key
App_secret string //secret
Expire_time time.Time //超时时间
Strict_verify int //是否强制验证:0用户自定义1强制
}
z