ormlite在DatabaseField中存储未知的外部对象

时间:2017-08-31 20:09:32

标签: java android database generics ormlite

例如:

我需要一个动物表,其中将animal_type包含为对象 T 类型作为外来关系字段。

然后我将有10个不同的表,如狗/猫/马等。

在基于动物类型的插入时,我将设置Animal对象的animal_type。

我不想将每个类型的多个databaseField作为外部关系,而是需要一个通用字段,使用ormlite版本 5.0

请参阅此json:{ "animal": { "type": 1, "content": { "items": [ { "title": "Image", "desc": "This is item with image", "media": { "url": "https://upload.wikimedia.org/wikipedia/commons/9/99/Earth_rise_from_the_Moon_AS11-44-6550_2.JPG", "type": 0 }, "options": [ { "title": "View", "value": "view" }, { "title": "Download", "value": "download" } ], "url": "https://commons.wikimedia.org/wiki/File%3AEarth_rise_from_the_Moon_AS11-44-6550_2.JPG" } ] } } }

0 个答案:

没有答案