configUser static method

dynamic configUser(
  1. int sex,
  2. int age,
  3. int smoking,
  4. int height,
  5. int weight,
)

人员配置信息

  • sex 性别 1-男 2-女
  • age 年龄
  • smoking 是否抽烟 1-抽 0-不抽
  • height 身高 cm
  • weight 体重 kg

Implementation

static configUser(int sex, int age, int smoking, int height, int weight) {
  YaseePluginPlatform.instance.configUser(sex, age, smoking, height, weight);
}