Package wbbs.domain

Examples of wbbs.domain.Topic


            topic.authorId = loginUser.id;
            topic.postDate = new Timestamp(System.currentTimeMillis());
            topic.updateDate = topic.postDate;
            topicService.insertTopic(topic);
        } else {
            Topic t = topicService.findTopic(topic.id);
            notNull(t, "主题不存在");
            equal(t.authorId, loginUser.id, "权限错误");
            topicService.updateTopic(topic);
        }
        return ok();
View Full Code Here


    @Action
    public Object reply(int topicId, String content) throws SQLException {

        ensureLoginAction();

        Topic topic = topicService.findTopic(topicId);
        notNull(topic, "主题不存在");
        Reply reply = new Reply();
        reply.topicId = topicId;
        reply.content = range(notNull(trim(content)), 1, 4000, "回复不能为空且最长4000个字");
        reply.authorId = loginUser.id;
View Full Code Here

TOP

Related Classes of wbbs.domain.Topic

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.