18 lines
462 B
Plaintext
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;
|
|
|
|
|
|
|
|
}
|