Examples of XPet


Examples of org.nutz.dao.test.meta.XPet

public class DaoRecordTest extends DaoCase {

  @Test
  public void test_null_timestamp() {
    dao.create(XPet.class, true);
    dao.insert(new XPet());
   
    assertEquals(1, dao.count(XPet.class));
    assertNotNull(dao.fetch(XPet.class));
   
    Sql sql = Sqls.fetchEntity("select * from t_xpet");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.