use of com.litepaltest.model.IdCard in project LitePal by LitePalFramework.
the class One2OneBiSaveTest method init.
private void init() {
s = new Student();
s.setName("Jimmy");
s.setAge(18);
i = new IdCard();
i.setNumber("9997777112");
i.setAddress("Nanjing road");
}
use of com.litepaltest.model.IdCard in project LitePal by LitePalFramework.
the class DeleteTest method initRose.
private void initRose() {
rose = new Student();
rose.setName("Rose");
rose.setAge(15);
roseCard = new IdCard();
roseCard.setAddress("Rose Street");
roseCard.setNumber("123457");
roseCard.setStudent(rose);
}
Aggregations