1、调整gas费浮动比例为90%

This commit is contained in:
2025-05-17 09:10:14 +08:00
parent 38a5acface
commit 8113868cc0
19 changed files with 397 additions and 23 deletions

View File

@ -10,7 +10,7 @@ import (
type WmWalletInfoGetPageReq struct {
dto.Pagination `search:"-"`
PrivateKey string `form:"privateKey" search:"type:exact;column:private_key;table:wm_wallet_info" comment:"钱包私钥"`
PrivateKey string `form:"privateKey" search:"-" comment:"钱包私钥"`
WmWalletInfoOrder
}
@ -30,7 +30,8 @@ func (m *WmWalletInfoGetPageReq) GetNeedSearch() interface{} {
}
type WmWalletInfoBatchInsertReq struct {
Keys string `json:"keys"`
Keys string `json:"keys"`
Remark string `json:"remark"`
common.ControlBy
}
@ -103,3 +104,14 @@ type WmWalletInfoDeleteReq struct {
func (s *WmWalletInfoDeleteReq) GetId() interface{} {
return s.Ids
}
type WmWalletExcelImportReq struct {
PrivateKey string `json:"privateKey" excel:"钱包私钥"`
Remark string `json:"remark" excel:"备注"`
}
type WmWalletInfoBatchUpdateReq struct {
Ids []int `json:"ids" form:"ids"`
Remark string `json:"remark" form:"remark"`
common.ControlBy
}