package com.aaa.controller; import java.util.List; import javax.servlet.http.HttpSession; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping; import com.aaa.biz.RecordBiz; import com.aaa.biz.TypeBiz; import com.aaa.entity.QueryVo; import com.aaa.entity.TradeRecord; import com.aaa.entity.TradeType; @Controller @RequestMapping("/type") public class FindAllType { @Autowired private TypeBiz tb; @Autowired private RecordBiz rb; @RequestMapping("findAllType") public String findAllType(Model model,HttpSession session,QueryVo qv){ List<TradeType> typeList=tb.findAllType(); List<QueryVo> recordList=rb.findAllRecord(null); session.setAttribute("typeList", typeList); session.setAttribute("recordList", recordList); return "ShowRecord"; } }

微信网友_6040315240812544 LV8
2022年10月21日
yanhengzhi LV1
2022年3月9日
1804458609 LV4
2022年3月5日
543666826 LV34
2021年11月18日
panbiao LV11
2021年3月31日
1335981869 LV1
2021年2月19日
TerryGaoBo LV9
2021年2月8日
lalalalalamo LV8
2020年8月22日
cesare-blog LV6
2020年5月14日
olivia_ye LV1
2020年5月4日