This commit is contained in:
aozhiwei 2024-06-22 14:26:39 +08:00
parent e1bdaf25f0
commit fd5df2abff

View File

@ -1,9 +1,11 @@
package task package task
import ( import (
"q5"
"f5" "f5"
"time" "time"
"fmt" "fmt"
"jccommon"
"main/constant" "main/constant"
) )
@ -88,3 +90,17 @@ SELECT * FROM nft WHERE idx > %d AND item_id = 0 LIMIT 1000`,
return true return true
}) })
} }
func (this* repairNft) repairNft(ds *f5.DataSet) bool {
switch q5.ToInt32(ds.GetByName("token_type")) {
case jccommon.NFT_TYPE_CFHERO:
{
}
case jccommon.NFT_TYPE_GOLD_BULLION:
{
}
}
return true
}