Examples of ForumCategory


Examples of org.focusns.model.forum.ForumCategory

    @Autowired
    private ForumCategoryService forumCategoryService;

    @Test
    public void testCreateForumCategory() {
        ForumCategory category = new ForumCategory();
        category.setLabel("Java 技术");
        category.setCreatedAt(new Date());
        category.setProjectId(1);
        category.setCreatedById(1);
        //
        forumCategoryService.createForumCategory(category);
    }
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.