多笔立减金

This commit is contained in:
ziming 2025-12-16 14:38:49 +08:00
parent 24994ec0d7
commit 76033bc88a
1 changed files with 5 additions and 2 deletions

View File

@ -43,8 +43,10 @@ func queryUsed(useNum *int) {
} }
func TestMd5(t *testing.T) { func TestMd5(t *testing.T) {
//jsonStr := `{"content":"1","timestamp":1765447477945,"ciphertext":"77CAC2FCFDEBAC6665025A1B81E3BBF9"}`
ciphertext := Md5("1" + "DrY1zLkOH01q0sN66vrmkdpbWsyb41ho") jsonStr := `{"content":"1","timestamp":1765447477945,"ciphertext":"77CAC2FCFDEBAC6665025A1B81E3BBF9"}`
ciphertext := Md5(jsonStr)
t.Log(ciphertext) t.Log(ciphertext)
} }
@ -80,4 +82,5 @@ func TestLength(t *testing.T) {
}` }`
s := len(jsonStr) s := len(jsonStr)
t.Log(s) t.Log(s)
} }