Commit ad8287cfbfe1f03310838ed595ce3ab979141090

Authored by 杨帅
1 parent 1d66946f

1

config.gradle
@@ -21,7 +21,7 @@ ext { @@ -21,7 +21,7 @@ ext {
21 //编译方式 21 //编译方式
22 debug : false, 22 debug : false,
23 //版本号 23 //版本号
24 - version: "0.0.1", 24 + version: "0.0.2",
25 //Lib库前缀 25 //Lib库前缀
26 packeg : "com.cnlive.module", 26 packeg : "com.cnlive.module",
27 //Lib库名称 27 //Lib库名称
moudle_pedometer/src/main/java/com/cnlive/moudle/pedometer/sql/entity/UserStepEntity.java 0 → 100644
  1 +package com.cnlive.moudle.pedometer.sql.entity;
  2 +
  3 +import org.greenrobot.greendao.annotation.Entity;
  4 +import org.greenrobot.greendao.annotation.Generated;
  5 +
  6 +@Entity
  7 +public class UserStepEntity {
  8 + private String userId;
  9 + private String date;
  10 + private String stepCount;
  11 + @Generated(hash = 1638365954)
  12 + public UserStepEntity(String userId, String date, String stepCount) {
  13 + this.userId = userId;
  14 + this.date = date;
  15 + this.stepCount = stepCount;
  16 + }
  17 + @Generated(hash = 273857141)
  18 + public UserStepEntity() {
  19 + }
  20 + public String getUserId() {
  21 + return this.userId;
  22 + }
  23 + public void setUserId(String userId) {
  24 + this.userId = userId;
  25 + }
  26 + public String getDate() {
  27 + return this.date;
  28 + }
  29 + public void setDate(String date) {
  30 + this.date = date;
  31 + }
  32 + public String getStepCount() {
  33 + return this.stepCount;
  34 + }
  35 + public void setStepCount(String stepCount) {
  36 + this.stepCount = stepCount;
  37 + }
  38 +}