首页>代码>最新架构(KotLin+Retrofit2+RxJava2+MVP)基础框架搭建实例,直接可以使用>/kotlinM-master/app/src/main/java/com/hao/m/entity/data/AccountData.java
package com.hao.m.entity.data; import org.greenrobot.greendao.annotation.Entity; import org.greenrobot.greendao.annotation.Generated; import org.greenrobot.greendao.annotation.Id; import org.greenrobot.greendao.annotation.Keep; /** * Created by wangpw on 2018/7/18. */ @Entity public class AccountData { @Id private Long id; private String username; private String password; private Long time; @Keep public AccountData(String username, String password, Long time) { this.username = username; this.password = password; this.time = time; } @Keep public AccountData(Long id, String username, String password, Long time) { this.id = id; this.username = username; this.password = password; this.time = time; } @Generated(hash = 691197240) public AccountData() { } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public Long getTime() { return this.time; } public void setTime(Long time) { this.time = time; } @Override public String toString() { return "AccountData{" + "id=" + id + ", username='" + username + '\'' + ", password='" + password + '\'' + '}'; } }

wangzhiguo LV1
2023年1月1日
tangtang111 LV1
2021年3月19日
鸣伟天下 LV1
2021年2月24日
li1373203469 LV1
2020年12月15日
luolukka LV8
2020年11月22日
慵懒的蚊子 LV1
2020年10月28日
自己人 LV5
2020年5月9日
a417298302 LV3
2020年5月8日
licheng798 LV3
2020年4月26日
zdm点点滴滴 LV1
2020年4月25日