GZMachinesWeb/.svn/pristine/b9/b9ba11f832bb3a12ba079cfa059...

18 lines
462 B
Plaintext

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<InventoryRecordBean> implements InventoryRecordService{
@Autowired InventoryRecordDao dao;
}