|
|
@ -209,12 +209,13 @@ type ReplyRateChangeHistory struct {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type RateChangeHistoryItem struct {
|
|
|
|
type RateChangeHistoryItem struct {
|
|
|
|
Id uint `json:"id"`
|
|
|
|
Id uint `json:"id"`
|
|
|
|
UserId uint `json:"userId"` // 用户id
|
|
|
|
UserId uint `json:"userId"` // 用户id
|
|
|
|
ChangeUserId uint `json:"changeUserId"` // 修改人
|
|
|
|
ChangeUserId uint `json:"changeUserId"` // 修改人
|
|
|
|
ServiceId uint `json:"serviceId"` // 服务id
|
|
|
|
ServiceId uint `json:"serviceId"` // 服务id
|
|
|
|
OldRateId uint `json:"oldRateId"` // 老费率
|
|
|
|
OldRateId uint `json:"oldRateId"` // 老费率
|
|
|
|
NewRateId uint `json:"newRateId"` // 新费率
|
|
|
|
NewRateId uint `json:"newRateId"` // 新费率
|
|
|
|
|
|
|
|
CreatedAt int64 `json:"createdAt"` // 调整时间
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// RateChangeHistory @Title 服务修改记录
|
|
|
|
// RateChangeHistory @Title 服务修改记录
|
|
|
|