jsp 在下拉列表展示查询内容
${u.productName}
控制层
model.addAttribute("page",testStoreInfoService.allofficeName(testStoreInfo));
服务层
public ListallofficeName(TestStoreInfo testStoreInfo) {
testStoreInfo.setOfficeId(UserUtils.getUser().getOffice().getId());
ListList = testStoreInfoDao.allofficeName(testStoreInfo);
return List;
}
??
List allofficeName(TestStoreInfo testStoreInfo);