Examples of AskReply


Examples of org.nutz.dao.test.meta.issue338.AskReply

        Ask ask = new Ask();
        ask.setTemptitle("ABC");
        ask.setTitle("ABC");
       
        List<AskReply> askReplies = new ArrayList<AskReply>();
        askReplies.add(new AskReply(ask.getAskId()));
        askReplies.add(new AskReply(ask.getAskId()));
        ask.setReplys(askReplies);
       
        dao.insertWith(ask, "replys");
       
        ask.setReplys(null);
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.