package jnpf.dmsService; import jnpf.dmsEntity.form.DmsDanganCundangJieshouForm; import jnpf.dmsEntity.DmsDanganCundangShenqingDanganheEntity; import jnpf.exception.DataException; public interface DmsDanganCundangJieshouService { /** * 接收存档申请中的档案盒。 * * @param form 接收信息 * @throws DataException 入参不合法、档案盒不存在或已经接收时抛出 */ void jieshou(DmsDanganCundangJieshouForm form) throws DataException; /** * 校验档案盒是否可以接收。 * * @param danganheBianhao 档案盒编号或档案盒主键 * @throws DataException 档案盒不存在、申请未通过或已经接收时抛出 */ DmsDanganCundangShenqingDanganheEntity check(String danganheBianhao) throws DataException; }