体重修改

This commit is contained in:
yan.y 2025-05-21 11:47:16 +08:00
parent ee2b52ebf1
commit 4338653110
1 changed files with 2 additions and 1 deletions

View File

@ -15,7 +15,7 @@ import (
) )
var CatWeightMap = map[int]string{ var CatWeightMap = map[int]string{
1: "0-1.5kg", //1: "0-1.5kg",
2: "0-3kg", 2: "0-3kg",
3: "3-5kg", 3: "3-5kg",
4: "5-8kg", 4: "5-8kg",
@ -29,6 +29,7 @@ var DogWeightMap = map[int]string{
5: "13-18kg", 5: "13-18kg",
6: "18-22kg", 6: "18-22kg",
7: "22-30kg", 7: "22-30kg",
8: "0-3kg",
} }
type UserPetInfo struct { type UserPetInfo struct {