package com.bonus.ma.service; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.bonus.ma.beans.InventoryRecordBean; import com.bonus.ma.dao.InventoryRecordDao; import com.bonus.sys.BaseServiceImp; @Service("inventoryRecord") public class InventoryRecordServiceImp extends BaseServiceImp implements InventoryRecordService{ @Autowired InventoryRecordDao dao; }