|
@@ -50,8 +50,8 @@ func GetHappyOrchardUserSeedRecordData(engine *xorm.Engine, record models.HappyO |
|
|
resp.RecordPlantingStageZh = stageNameCustomData[resp.RecordPlantingStage+1] |
|
|
resp.RecordPlantingStageZh = stageNameCustomData[resp.RecordPlantingStage+1] |
|
|
resp.RecordPlantingNextStage = resp.RecordPlantingStage + 1 |
|
|
resp.RecordPlantingNextStage = resp.RecordPlantingStage + 1 |
|
|
resp.RecordPlantingNextStageZh = stageNameCustomData[resp.RecordPlantingNextStage+1] |
|
|
resp.RecordPlantingNextStageZh = stageNameCustomData[resp.RecordPlantingNextStage+1] |
|
|
resp.RecordPlantingNextStageNeedWaterNums = nextSeedStateWaters / happyOrchardBasicSetting.WateringEveryTimeWaterDroplet |
|
|
|
|
|
resp.RecordPlantingNextStageNeedWater = nextSeedStateWaters |
|
|
|
|
|
|
|
|
resp.RecordPlantingNextStageNeedWaterNums = (nextSeedStateWaters - record.WaterNums) / happyOrchardBasicSetting.WateringEveryTimeWaterDroplet |
|
|
|
|
|
resp.RecordPlantingNextStageNeedWater = nextSeedStateWaters - record.WaterNums |
|
|
} |
|
|
} |
|
|
resp.RecordId = record.Id |
|
|
resp.RecordId = record.Id |
|
|
resp.RecordName = happyOrchardSeed.Name |
|
|
resp.RecordName = happyOrchardSeed.Name |
|
|