Files
huangzj 4feb1f61f2 feat(Go-StudyExample):创建项目,添加使用示例如下:
map与struct之间转换的处理工具使用示例,参考代码地址:https://github.com/mitchellh/mapstructure
json与struct之间转换处理工具使用示例
2020-04-28 17:51:57 +08:00

21 lines
309 B
Go
Raw Permalink 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.
/*
* @Author : huangzj
* @Time : 2020/3/26 18:18
* @Description
*/
package entity
import "time"
type UserType struct {
UserTypeId int
UserTypeName string
}
type User struct {
UserType UserType `jpath:"userType"`
LoginName string `jpath:"loginName"`
T time.Time `jpath:"t"`
}