| | |
| | | |
| | | import com.dayu.pipirrapp.bean.db.CenterPointBean; |
| | | import com.dayu.pipirrapp.bean.db.LoginBean; |
| | | import com.dayu.pipirrapp.bean.db.MarkerBean; |
| | | import com.dayu.pipirrapp.bean.db.TagBean; |
| | | |
| | | |
| | |
| | | * Date: 2023-11-05 16:23 |
| | | * Description: |
| | | */ |
| | | @Database(entities = {TagBean.class, LoginBean.class, CenterPointBean.class}, version = 1, exportSchema = false) |
| | | @Database(entities = {TagBean.class, LoginBean.class, CenterPointBean.class, MarkerBean.class}, version = 1, exportSchema = false) |
| | | public abstract class AppDatabase extends RoomDatabase { |
| | | |
| | | |
| | |
| | | |
| | | public abstract CenterPointDao centerPointDao(); |
| | | |
| | | public abstract MarkerDao markerDao(); |
| | | |
| | | } |