fix ue integer float r error
This commit is contained in:
@@ -1563,6 +1563,9 @@ type CreateUeReq struct {
|
||||
LocationZ OptInt `json:"location_z"`
|
||||
LocationN OptInt `json:"location_n"`
|
||||
Author OptString `json:"author"`
|
||||
GameLv OptString `json:"game_lv"`
|
||||
GameExp OptString `json:"game_exp"`
|
||||
GameID OptString `json:"game_id"`
|
||||
CreatedAt OptDateTime `json:"created_at"`
|
||||
Owner int `json:"owner"`
|
||||
}
|
||||
@@ -1657,6 +1660,21 @@ func (s *CreateUeReq) GetAuthor() OptString {
|
||||
return s.Author
|
||||
}
|
||||
|
||||
// GetGameLv returns the value of GameLv.
|
||||
func (s *CreateUeReq) GetGameLv() OptString {
|
||||
return s.GameLv
|
||||
}
|
||||
|
||||
// GetGameExp returns the value of GameExp.
|
||||
func (s *CreateUeReq) GetGameExp() OptString {
|
||||
return s.GameExp
|
||||
}
|
||||
|
||||
// GetGameID returns the value of GameID.
|
||||
func (s *CreateUeReq) GetGameID() OptString {
|
||||
return s.GameID
|
||||
}
|
||||
|
||||
// GetCreatedAt returns the value of CreatedAt.
|
||||
func (s *CreateUeReq) GetCreatedAt() OptDateTime {
|
||||
return s.CreatedAt
|
||||
@@ -1757,6 +1775,21 @@ func (s *CreateUeReq) SetAuthor(val OptString) {
|
||||
s.Author = val
|
||||
}
|
||||
|
||||
// SetGameLv sets the value of GameLv.
|
||||
func (s *CreateUeReq) SetGameLv(val OptString) {
|
||||
s.GameLv = val
|
||||
}
|
||||
|
||||
// SetGameExp sets the value of GameExp.
|
||||
func (s *CreateUeReq) SetGameExp(val OptString) {
|
||||
s.GameExp = val
|
||||
}
|
||||
|
||||
// SetGameID sets the value of GameID.
|
||||
func (s *CreateUeReq) SetGameID(val OptString) {
|
||||
s.GameID = val
|
||||
}
|
||||
|
||||
// SetCreatedAt sets the value of CreatedAt.
|
||||
func (s *CreateUeReq) SetCreatedAt(val OptDateTime) {
|
||||
s.CreatedAt = val
|
||||
@@ -6184,6 +6217,9 @@ type UeCreate struct {
|
||||
LocationZ OptInt `json:"location_z"`
|
||||
LocationN OptInt `json:"location_n"`
|
||||
Author OptString `json:"author"`
|
||||
GameLv OptString `json:"game_lv"`
|
||||
GameExp OptString `json:"game_exp"`
|
||||
GameID OptString `json:"game_id"`
|
||||
CreatedAt OptDateTime `json:"created_at"`
|
||||
}
|
||||
|
||||
@@ -6272,6 +6308,21 @@ func (s *UeCreate) GetAuthor() OptString {
|
||||
return s.Author
|
||||
}
|
||||
|
||||
// GetGameLv returns the value of GameLv.
|
||||
func (s *UeCreate) GetGameLv() OptString {
|
||||
return s.GameLv
|
||||
}
|
||||
|
||||
// GetGameExp returns the value of GameExp.
|
||||
func (s *UeCreate) GetGameExp() OptString {
|
||||
return s.GameExp
|
||||
}
|
||||
|
||||
// GetGameID returns the value of GameID.
|
||||
func (s *UeCreate) GetGameID() OptString {
|
||||
return s.GameID
|
||||
}
|
||||
|
||||
// GetCreatedAt returns the value of CreatedAt.
|
||||
func (s *UeCreate) GetCreatedAt() OptDateTime {
|
||||
return s.CreatedAt
|
||||
@@ -6362,6 +6413,21 @@ func (s *UeCreate) SetAuthor(val OptString) {
|
||||
s.Author = val
|
||||
}
|
||||
|
||||
// SetGameLv sets the value of GameLv.
|
||||
func (s *UeCreate) SetGameLv(val OptString) {
|
||||
s.GameLv = val
|
||||
}
|
||||
|
||||
// SetGameExp sets the value of GameExp.
|
||||
func (s *UeCreate) SetGameExp(val OptString) {
|
||||
s.GameExp = val
|
||||
}
|
||||
|
||||
// SetGameID sets the value of GameID.
|
||||
func (s *UeCreate) SetGameID(val OptString) {
|
||||
s.GameID = val
|
||||
}
|
||||
|
||||
// SetCreatedAt sets the value of CreatedAt.
|
||||
func (s *UeCreate) SetCreatedAt(val OptDateTime) {
|
||||
s.CreatedAt = val
|
||||
@@ -6388,6 +6454,9 @@ type UeList struct {
|
||||
LocationZ OptInt `json:"location_z"`
|
||||
LocationN OptInt `json:"location_n"`
|
||||
Author OptString `json:"author"`
|
||||
GameLv OptString `json:"game_lv"`
|
||||
GameExp OptString `json:"game_exp"`
|
||||
GameID OptString `json:"game_id"`
|
||||
CreatedAt OptDateTime `json:"created_at"`
|
||||
}
|
||||
|
||||
@@ -6476,6 +6545,21 @@ func (s *UeList) GetAuthor() OptString {
|
||||
return s.Author
|
||||
}
|
||||
|
||||
// GetGameLv returns the value of GameLv.
|
||||
func (s *UeList) GetGameLv() OptString {
|
||||
return s.GameLv
|
||||
}
|
||||
|
||||
// GetGameExp returns the value of GameExp.
|
||||
func (s *UeList) GetGameExp() OptString {
|
||||
return s.GameExp
|
||||
}
|
||||
|
||||
// GetGameID returns the value of GameID.
|
||||
func (s *UeList) GetGameID() OptString {
|
||||
return s.GameID
|
||||
}
|
||||
|
||||
// GetCreatedAt returns the value of CreatedAt.
|
||||
func (s *UeList) GetCreatedAt() OptDateTime {
|
||||
return s.CreatedAt
|
||||
@@ -6566,6 +6650,21 @@ func (s *UeList) SetAuthor(val OptString) {
|
||||
s.Author = val
|
||||
}
|
||||
|
||||
// SetGameLv sets the value of GameLv.
|
||||
func (s *UeList) SetGameLv(val OptString) {
|
||||
s.GameLv = val
|
||||
}
|
||||
|
||||
// SetGameExp sets the value of GameExp.
|
||||
func (s *UeList) SetGameExp(val OptString) {
|
||||
s.GameExp = val
|
||||
}
|
||||
|
||||
// SetGameID sets the value of GameID.
|
||||
func (s *UeList) SetGameID(val OptString) {
|
||||
s.GameID = val
|
||||
}
|
||||
|
||||
// SetCreatedAt sets the value of CreatedAt.
|
||||
func (s *UeList) SetCreatedAt(val OptDateTime) {
|
||||
s.CreatedAt = val
|
||||
@@ -7135,6 +7234,9 @@ type UeRead struct {
|
||||
LocationZ OptInt `json:"location_z"`
|
||||
LocationN OptInt `json:"location_n"`
|
||||
Author OptString `json:"author"`
|
||||
GameLv OptString `json:"game_lv"`
|
||||
GameExp OptString `json:"game_exp"`
|
||||
GameID OptString `json:"game_id"`
|
||||
CreatedAt OptDateTime `json:"created_at"`
|
||||
}
|
||||
|
||||
@@ -7223,6 +7325,21 @@ func (s *UeRead) GetAuthor() OptString {
|
||||
return s.Author
|
||||
}
|
||||
|
||||
// GetGameLv returns the value of GameLv.
|
||||
func (s *UeRead) GetGameLv() OptString {
|
||||
return s.GameLv
|
||||
}
|
||||
|
||||
// GetGameExp returns the value of GameExp.
|
||||
func (s *UeRead) GetGameExp() OptString {
|
||||
return s.GameExp
|
||||
}
|
||||
|
||||
// GetGameID returns the value of GameID.
|
||||
func (s *UeRead) GetGameID() OptString {
|
||||
return s.GameID
|
||||
}
|
||||
|
||||
// GetCreatedAt returns the value of CreatedAt.
|
||||
func (s *UeRead) GetCreatedAt() OptDateTime {
|
||||
return s.CreatedAt
|
||||
@@ -7313,6 +7430,21 @@ func (s *UeRead) SetAuthor(val OptString) {
|
||||
s.Author = val
|
||||
}
|
||||
|
||||
// SetGameLv sets the value of GameLv.
|
||||
func (s *UeRead) SetGameLv(val OptString) {
|
||||
s.GameLv = val
|
||||
}
|
||||
|
||||
// SetGameExp sets the value of GameExp.
|
||||
func (s *UeRead) SetGameExp(val OptString) {
|
||||
s.GameExp = val
|
||||
}
|
||||
|
||||
// SetGameID sets the value of GameID.
|
||||
func (s *UeRead) SetGameID(val OptString) {
|
||||
s.GameID = val
|
||||
}
|
||||
|
||||
// SetCreatedAt sets the value of CreatedAt.
|
||||
func (s *UeRead) SetCreatedAt(val OptDateTime) {
|
||||
s.CreatedAt = val
|
||||
@@ -7339,6 +7471,9 @@ type UeUpdate struct {
|
||||
LocationZ OptInt `json:"location_z"`
|
||||
LocationN OptInt `json:"location_n"`
|
||||
Author OptString `json:"author"`
|
||||
GameLv OptString `json:"game_lv"`
|
||||
GameExp OptString `json:"game_exp"`
|
||||
GameID OptString `json:"game_id"`
|
||||
CreatedAt OptDateTime `json:"created_at"`
|
||||
}
|
||||
|
||||
@@ -7427,6 +7562,21 @@ func (s *UeUpdate) GetAuthor() OptString {
|
||||
return s.Author
|
||||
}
|
||||
|
||||
// GetGameLv returns the value of GameLv.
|
||||
func (s *UeUpdate) GetGameLv() OptString {
|
||||
return s.GameLv
|
||||
}
|
||||
|
||||
// GetGameExp returns the value of GameExp.
|
||||
func (s *UeUpdate) GetGameExp() OptString {
|
||||
return s.GameExp
|
||||
}
|
||||
|
||||
// GetGameID returns the value of GameID.
|
||||
func (s *UeUpdate) GetGameID() OptString {
|
||||
return s.GameID
|
||||
}
|
||||
|
||||
// GetCreatedAt returns the value of CreatedAt.
|
||||
func (s *UeUpdate) GetCreatedAt() OptDateTime {
|
||||
return s.CreatedAt
|
||||
@@ -7517,6 +7667,21 @@ func (s *UeUpdate) SetAuthor(val OptString) {
|
||||
s.Author = val
|
||||
}
|
||||
|
||||
// SetGameLv sets the value of GameLv.
|
||||
func (s *UeUpdate) SetGameLv(val OptString) {
|
||||
s.GameLv = val
|
||||
}
|
||||
|
||||
// SetGameExp sets the value of GameExp.
|
||||
func (s *UeUpdate) SetGameExp(val OptString) {
|
||||
s.GameExp = val
|
||||
}
|
||||
|
||||
// SetGameID sets the value of GameID.
|
||||
func (s *UeUpdate) SetGameID(val OptString) {
|
||||
s.GameID = val
|
||||
}
|
||||
|
||||
// SetCreatedAt sets the value of CreatedAt.
|
||||
func (s *UeUpdate) SetCreatedAt(val OptDateTime) {
|
||||
s.CreatedAt = val
|
||||
@@ -8038,6 +8203,9 @@ type UpdateUeReq struct {
|
||||
LocationZ OptInt `json:"location_z"`
|
||||
LocationN OptInt `json:"location_n"`
|
||||
Author OptString `json:"author"`
|
||||
GameLv OptString `json:"game_lv"`
|
||||
GameExp OptString `json:"game_exp"`
|
||||
GameID OptString `json:"game_id"`
|
||||
Owner OptInt `json:"owner"`
|
||||
}
|
||||
|
||||
@@ -8126,6 +8294,21 @@ func (s *UpdateUeReq) GetAuthor() OptString {
|
||||
return s.Author
|
||||
}
|
||||
|
||||
// GetGameLv returns the value of GameLv.
|
||||
func (s *UpdateUeReq) GetGameLv() OptString {
|
||||
return s.GameLv
|
||||
}
|
||||
|
||||
// GetGameExp returns the value of GameExp.
|
||||
func (s *UpdateUeReq) GetGameExp() OptString {
|
||||
return s.GameExp
|
||||
}
|
||||
|
||||
// GetGameID returns the value of GameID.
|
||||
func (s *UpdateUeReq) GetGameID() OptString {
|
||||
return s.GameID
|
||||
}
|
||||
|
||||
// GetOwner returns the value of Owner.
|
||||
func (s *UpdateUeReq) GetOwner() OptInt {
|
||||
return s.Owner
|
||||
@@ -8216,6 +8399,21 @@ func (s *UpdateUeReq) SetAuthor(val OptString) {
|
||||
s.Author = val
|
||||
}
|
||||
|
||||
// SetGameLv sets the value of GameLv.
|
||||
func (s *UpdateUeReq) SetGameLv(val OptString) {
|
||||
s.GameLv = val
|
||||
}
|
||||
|
||||
// SetGameExp sets the value of GameExp.
|
||||
func (s *UpdateUeReq) SetGameExp(val OptString) {
|
||||
s.GameExp = val
|
||||
}
|
||||
|
||||
// SetGameID sets the value of GameID.
|
||||
func (s *UpdateUeReq) SetGameID(val OptString) {
|
||||
s.GameID = val
|
||||
}
|
||||
|
||||
// SetOwner sets the value of Owner.
|
||||
func (s *UpdateUeReq) SetOwner(val OptInt) {
|
||||
s.Owner = val
|
||||
@@ -10911,6 +11109,9 @@ type UserUeList struct {
|
||||
LocationZ OptInt `json:"location_z"`
|
||||
LocationN OptInt `json:"location_n"`
|
||||
Author OptString `json:"author"`
|
||||
GameLv OptString `json:"game_lv"`
|
||||
GameExp OptString `json:"game_exp"`
|
||||
GameID OptString `json:"game_id"`
|
||||
CreatedAt OptDateTime `json:"created_at"`
|
||||
}
|
||||
|
||||
@@ -10999,6 +11200,21 @@ func (s *UserUeList) GetAuthor() OptString {
|
||||
return s.Author
|
||||
}
|
||||
|
||||
// GetGameLv returns the value of GameLv.
|
||||
func (s *UserUeList) GetGameLv() OptString {
|
||||
return s.GameLv
|
||||
}
|
||||
|
||||
// GetGameExp returns the value of GameExp.
|
||||
func (s *UserUeList) GetGameExp() OptString {
|
||||
return s.GameExp
|
||||
}
|
||||
|
||||
// GetGameID returns the value of GameID.
|
||||
func (s *UserUeList) GetGameID() OptString {
|
||||
return s.GameID
|
||||
}
|
||||
|
||||
// GetCreatedAt returns the value of CreatedAt.
|
||||
func (s *UserUeList) GetCreatedAt() OptDateTime {
|
||||
return s.CreatedAt
|
||||
@@ -11089,6 +11305,21 @@ func (s *UserUeList) SetAuthor(val OptString) {
|
||||
s.Author = val
|
||||
}
|
||||
|
||||
// SetGameLv sets the value of GameLv.
|
||||
func (s *UserUeList) SetGameLv(val OptString) {
|
||||
s.GameLv = val
|
||||
}
|
||||
|
||||
// SetGameExp sets the value of GameExp.
|
||||
func (s *UserUeList) SetGameExp(val OptString) {
|
||||
s.GameExp = val
|
||||
}
|
||||
|
||||
// SetGameID sets the value of GameID.
|
||||
func (s *UserUeList) SetGameID(val OptString) {
|
||||
s.GameID = val
|
||||
}
|
||||
|
||||
// SetCreatedAt sets the value of CreatedAt.
|
||||
func (s *UserUeList) SetCreatedAt(val OptDateTime) {
|
||||
s.CreatedAt = val
|
||||
|
Reference in New Issue
Block a user