예제 #1
0
 @Override
 public Bidding getBidding(String BiddingId) throws Exception {
   // TODO Auto-generated method stub
   Bidding bidding = biddingDao.selectById(BiddingId);
   bidding.setDictBiddingType(
       dictionaryDao.selectByFullCodeAndDictType(bidding.getBiddingTypeId(), "bidTypes"));
   return bidding;
 }