14 lines
251 B
Plaintext
14 lines
251 B
Plaintext
|
|
package com.bonus.rm.service;
|
||
|
|
|
||
|
|
|
||
|
|
import com.bonus.rm.beans.PutInStorageAuditBean;
|
||
|
|
import com.bonus.sys.BaseService;
|
||
|
|
|
||
|
|
|
||
|
|
public interface PutInStorageAuditService extends BaseService<PutInStorageAuditBean>{
|
||
|
|
|
||
|
|
String isAudit(PutInStorageAuditBean o);
|
||
|
|
|
||
|
|
|
||
|
|
}
|