Zepp OS: Implement workout fetching

This commit is contained in:
José Rebelo
2022-10-02 16:07:21 +02:00
committed by Gitea
parent 7f4bd16914
commit d1ae6cf225
34 changed files with 1140 additions and 133 deletions
@@ -43,7 +43,7 @@ public class GBDaoGenerator {
public static void main(String[] args) throws Exception {
final Schema schema = new Schema(43, MAIN_PACKAGE + ".entities");
final Schema schema = new Schema(44, MAIN_PACKAGE + ".entities");
Entity userAttributes = addUserAttributes(schema);
Entity user = addUserInfo(schema, userAttributes);
@@ -638,6 +638,7 @@ public class GBDaoGenerator {
summary.addIntProperty("baseAltitude").javaDocGetterAndSetter("Temporary, bip-specific");
summary.addStringProperty("gpxTrack").codeBeforeGetter(OVERRIDE);
summary.addStringProperty("rawDetailsPath");
Property deviceId = summary.addLongProperty("deviceId").notNull().codeBeforeGetter(OVERRIDE).getProperty();
summary.addToOne(device, deviceId);