@Test
 public void getAllBillTest() {
   List<Bill> bills = mapper.getAllBill();
   for (Bill bill : bills) {
     System.out.println(bill);
   }
 }