Package org.nutz.dao.impl.sql.pojo

Examples of org.nutz.dao.impl.sql.pojo.InsertByChainPItem


    Pojo pojo;

    if (obj instanceof Chain) {
      pojo = dao.pojoMaker.makePojo(SqlType.INSERT);
      pojo.append(Pojos.Items.entityTableName());
      pojo.append(new InsertByChainPItem((Chain)obj));
      pojo.setEntity(en);
    } else {
      pojo = dao.pojoMaker.makeInsert(en).setOperatingObject(obj);
    }
    pojoList.add(pojo);
View Full Code Here


        Pojo pojo;

        if (obj instanceof Chain) {
            pojo = dao.pojoMaker.makePojo(SqlType.INSERT);
            pojo.append(Pojos.Items.entityTableName());
            pojo.append(new InsertByChainPItem((Chain)obj));
            pojo.setEntity(en);
        } else {
            pojo = dao.pojoMaker.makeInsert(en).setOperatingObject(obj);
        }
        pojoList.add(pojo);
View Full Code Here

TOP

Related Classes of org.nutz.dao.impl.sql.pojo.InsertByChainPItem

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.