text08/src/main/java/com/example/bwietext080726/dao/BillDao.java

15 lines
362 B
Java

package com.example.bwietext080726.dao;
import com.example.bwietext080726.Service.BillService;
import com.example.bwietext080726.pojo.Bill;
import org.springframework.beans.factory.annotation.Autowired;
public class BillDao {
@Autowired
private BillService billService;
public Integer add(Bill bill){
return billService.add(bill);
}
}