Huawei: Decode longest Streak and triped for jump rope(no UI)

This commit is contained in:
Me7c7
2025-05-08 20:13:59 +00:00
committed by José Rebelo
parent a154d900d9
commit a5ee041d7b
4 changed files with 42 additions and 2 deletions
@@ -56,7 +56,7 @@ public class GBDaoGenerator {
public static void main(String[] args) throws Exception {
final Schema schema = new Schema(102, MAIN_PACKAGE + ".entities");
final Schema schema = new Schema(103, MAIN_PACKAGE + ".entities");
Entity userAttributes = addUserAttributes(schema);
Entity user = addUserInfo(schema, userAttributes);
@@ -1539,6 +1539,9 @@ public class GBDaoGenerator {
workoutSummary.addByteProperty("algType").notNull();
workoutSummary.addIntProperty("trainingPoints").notNull();
workoutSummary.addIntProperty("longestStreak").notNull();
workoutSummary.addIntProperty("tripped").notNull();
return workoutSummary;
}