Package org.springside.examples.showcase.entity

Examples of org.springside.examples.showcase.entity.Team


    GetTeamDetailResult result = new GetTeamDetailResult();
    try {

      Validate.notNull(id, "id参数为空");

      Team team = accountService.getTeamWithDetail(id);

      Validate.notNull(team, "项目不存在(id:" + id + ")");

      TeamDTO dto = BeanMapper.map(team, TeamDTO.class);
      result.setTeam(dto);
View Full Code Here


  @Autowired
  private TeamMybatisDao teamDao;

  @Test
  public void getTeamWithDetail() throws Exception {
    Team team = teamDao.getWithDetail(1L);
    assertThat(team.getName()).isEqualTo("Dolphin");
    assertThat(team.getMaster().getName()).isEqualTo("管理员");
  }
View Full Code Here

TOP

Related Classes of org.springside.examples.showcase.entity.Team

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.