Package cn.org.rapid_framework.generator.provider.db.table.model.ForeignKey

Examples of cn.org.rapid_framework.generator.provider.db.table.model.ForeignKey.ReferenceKey


        assertEquals("UserInfo", newBigDecimal().getSimpleJavaType());
        assertEquals("org.badqiu.UserInfo", newBigDecimal().getPossibleShortJavaType());
    }
 
  public void test_setForeignKey() {
    ReferenceKey ref = ReferenceKey.fromString("role(role_id)");
    assertEquals(ref.columnSqlName,"role_id");
    assertEquals(ref.tableName,"role");
    assertEquals(ref.schemaName,null);
   
    ref = ReferenceKey.fromString("security.role(role_id)");
View Full Code Here

TOP

Related Classes of cn.org.rapid_framework.generator.provider.db.table.model.ForeignKey.ReferenceKey

Copyright © 2018 www.massapicom. 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.