Commit 76a32985bed8abde52f694d30e4cfd3cff36d05c

Authored by 杨帅
2 parents 80b3f6f5 f1ddb047

1 路径工具,打点页面逻辑

.idea/gradle.xml
@@ -3,9 +3,6 @@ @@ -3,9 +3,6 @@
3 <component name="GradleSettings"> 3 <component name="GradleSettings">
4 <option name="linkedExternalProjectsSettings"> 4 <option name="linkedExternalProjectsSettings">
5 <GradleProjectSettings> 5 <GradleProjectSettings>
6 - <compositeConfiguration>  
7 - <compositeBuild compositeDefinitionSource="SCRIPT" />  
8 - </compositeConfiguration>  
9 <option name="distributionType" value="DEFAULT_WRAPPED" /> 6 <option name="distributionType" value="DEFAULT_WRAPPED" />
10 <option name="externalProjectPath" value="$PROJECT_DIR$" /> 7 <option name="externalProjectPath" value="$PROJECT_DIR$" />
11 <option name="modules"> 8 <option name="modules">
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.2.5", 24 + version: "0.2.6",
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/collectionTrace/model/RaceNameListInfo.java
@@ -179,39 +179,5 @@ public class RaceNameListInfo implements Serializable { @@ -179,39 +179,5 @@ public class RaceNameListInfo implements Serializable {
179 public void setUpdateTime(long updateTime) { 179 public void setUpdateTime(long updateTime) {
180 this.updateTime = updateTime; 180 this.updateTime = updateTime;
181 } 181 }
182 -  
183 - public UserMsgBean getUserMsg() {  
184 - return userMsg;  
185 - }  
186 -  
187 - public void setUserMsg(UserMsgBean userMsg) {  
188 - this.userMsg = userMsg;  
189 - }  
190 -  
191 - public static class UserMsgBean implements Serializable {  
192 - /**  
193 - * image :  
194 - * nickName :  
195 - */  
196 -  
197 - private String image;  
198 - private String nickName;  
199 -  
200 - public String getImage() {  
201 - return image;  
202 - }  
203 -  
204 - public void setImage(String image) {  
205 - this.image = image;  
206 - }  
207 -  
208 - public String getNickName() {  
209 - return nickName;  
210 - }  
211 -  
212 - public void setNickName(String nickName) {  
213 - this.nickName = nickName;  
214 - }  
215 - }  
216 } 182 }
217 } 183 }