简单记个笔记
这里的ID是unit类型,而RoleLevel是int类型,使用strconv包解决
userIDStr := strconv.FormatUint(uint64(userTable.ID), 10)
roleLevelStr := strconv.Itoa(userTable.RoleLevel)
这里的ID是unit类型,而RoleLevel是int类型,使用strconv包解决
userIDStr := strconv.FormatUint(uint64(userTable.ID), 10)
roleLevelStr := strconv.Itoa(userTable.RoleLevel)