14 lines
292 B
Plaintext
14 lines
292 B
Plaintext
package com.bonus.ma.service;
|
|
|
|
import com.bonus.ma.beans.InventoryRecordBean;
|
|
import com.bonus.sys.BaseService;
|
|
|
|
public interface InventoryRecordService extends BaseService<InventoryRecordBean>{
|
|
|
|
/* void addLibs(LibNumsInventoryBean o);
|
|
|
|
String findByModelId(LibNumsInventoryBean o);*/
|
|
|
|
|
|
}
|