Files
GSFV2/ios/Classes/model/UserInfo.swift
2024-04-10 12:51:20 +05:30

108 lines
2.2 KiB
Swift
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// UserInfo.swift
// flutter_swift
//
// Created by on 2022/10/10.
//
class UserInfo:Codable{
/**
,:1
*/
var userIndex :UInt = 1;
/**
ID,:0
*/
var userId :UInt = 0;
/**
,:"icomon"
*/
var nickName="icomon";
/**
(cm),:172cm
*/
var height:UInt = 172;
/**
(kg),:60.0kg
*/
var weight:Float = 60;
/**
(kg),:50.0kg
*/
var targetWeight:Float = 50;
/**
,:24
*/
var age:UInt = 24;
/**
,:0 1:
*/
var weightDirection:UInt = 0;
/**
使,:ICBFATypeWLA01
*/
var bfaType = BFAType.ICBFATypeWLA01
/**
,:ICPeopleTypeNormal
*/
var peopleType = PeopleType.ICPeopleTypeNormal;
/**
,:ICSexTypeMale
*/
var sex = SexType.ICSexTypeMale;
/**
,:ICWeightUnitKg
*/
var weightUnit = ScaleUnit.ICWeightUnitKg;
/**
,:ICRulerUnitCM
*/
var rulerUnit=RulerUnit.ICRulerUnitCM;
/**
,:ICRulerMeasureModeLength
*/
var rulerMode = RulerMeasureMode.ICRulerMeasureModeLength;
/**
,:ICKitchenScaleUnitG
*/
var kitchenUnit = KitchenScaleUnit.ICKitchenScaleUnitG;
/**
* ,:true,
*/
var enableMeasureImpendence = true;
/**
* HR,:true,
*/
var enableMeasureHr = true;
/**
* ,:true,
*/
var enableMeasureBalance = true;
/**
* ,:true,
*/
var enableMeasureGravity = true;
/**
*
*/
var lastImp:UInt = 0;
}