如果某个函数的入参是interface{},有下面几种方式可以获取入参的方法:1 fmt:import "fmt" func main() { v := "hello world" fmt.Println(typeof(v)) } func typeof(v interface{}) string { return fmt.Sp...
表结构// User table 用户表,与用户组表多对多关系 type User struct { Id int UserName string `orm:"unique"` Department string Email string Groups []*Group `orm:"...
一、AES加解密AES加密又分为ECB、CBC、CFB、OFB等几种,这里只列两种吧。1、CBC加解密/* code from www.361way.com mail:itybku@139.com desc:aes加密之一 */ package main import( "bytes" "crypto/aes" "fm...