秋老虎iu

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

在主表(Appointment)里面private+副表的对象

private Department(副表) depa;

private User(副表) u;

然后source set get

再在主表service层里面

@Autowired
private AppointmentMapper appointmentMapper;
@Autowired
private DepartmentMapper departmentMapper;
@Autowired
private UserMapper userMapper;

//查询全部事件

public List<Appointment> getallapplist(){


for (Appointment ap : appointmentMapper.getlist()) {
ap.setDepa(departmentMapper.selectByPrimaryKey((Integer.valueOf(ap.getDepartment()))));
ap.setU(userMapper.selectByPrimaryKey((Integer.valueOf(ap.getUser()))));
}

return appointmentMapper.getlist();
}

 

posted on 2017-07-19 12:14  秋老虎iu  阅读(142)  评论(0编辑  收藏  举报