Commit ad8287cfbfe1f03310838ed595ce3ab979141090
1 parent
1d66946f
1
Showing
2 changed files
with
39 additions
and
1 deletions
config.gradle
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 | +} | ... | ... |