42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
package com.bonus.lease.service;
|
|
|
|
import java.util.List;
|
|
|
|
import com.bonus.lease.beans.OutStorageCheckBean;
|
|
import com.bonus.sys.BaseService;
|
|
import com.bonus.sys.Page;
|
|
|
|
public interface OutStorageCheckService extends BaseService<OutStorageCheckBean>{
|
|
|
|
public int insertBean(OutStorageCheckBean o);
|
|
|
|
public List<OutStorageCheckBean> getOutStorageCheckList(OutStorageCheckBean o);
|
|
|
|
public int doCheck(OutStorageCheckBean o);
|
|
|
|
public List<OutStorageCheckBean> getOutStorageCheckDetails(OutStorageCheckBean o);
|
|
|
|
public List<OutStorageCheckBean> getModelInfo(OutStorageCheckBean o);
|
|
|
|
public void updateAlCheckNum(OutStorageCheckBean o);
|
|
|
|
public void addCheckRecord(OutStorageCheckBean o);
|
|
|
|
public OutStorageCheckBean getAlCheckNum(OutStorageCheckBean o);
|
|
|
|
public void buildOutPutTask(OutStorageCheckBean o);
|
|
|
|
public List<OutStorageCheckBean> getCheckInfoByNum(OutStorageCheckBean o);
|
|
|
|
public List<OutStorageCheckBean> getCheckRecordList(OutStorageCheckBean o);
|
|
|
|
public OutStorageCheckBean confirmCheckTask(OutStorageCheckBean o);
|
|
|
|
public Page<OutStorageCheckBean> outStorageCheckQuery(OutStorageCheckBean o, Page<OutStorageCheckBean> page);
|
|
|
|
|
|
|
|
|
|
|
|
}
|