Package org.focusns.model.calendar

Examples of org.focusns.model.calendar.EventCategory


    @Autowired
    private EventCategoryService eventCategoryService;

    @Test
    public void testCreateEventCategory() {
        EventCategory category = new EventCategory();
        category.setLabel("任务");
        category.setCreateAt(new Date());
        category.setProjectId(1);
        category.setCreateById(1);
        //
        eventCategoryService.createEventCategory(category);
    }
View Full Code Here

TOP

Related Classes of org.focusns.model.calendar.EventCategory

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.