@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);
}