Examples of TeamRole


Examples of org.focusns.model.team.TeamRole

    @Autowired
    private TeamRoleService teamRoleService;

    @Test
    public void testCreateTeamRole() {
        TeamRole teamRole = new TeamRole();
        teamRole.setLabel("好友");
        teamRole.setCreatedById(1);
        teamRole.setModifiedById(1);
        teamRole.setProjectId(1);
        //
        teamRoleService.createTeamRole(teamRole);
    }
View Full Code Here

Examples of org.focusns.model.team.TeamRole

    private ProjectDao projectDao;
    @Autowired
    private ProjectUserDao projectUserDao;

    public TeamRole getTeamRole(long roleId) {
        TeamRole teamRole = teamRoleDao.select(roleId);
        return fillTeamRole(teamRole);
    }
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.