Commit 94b6a1c7 authored by R10's avatar R10

单据识别保存

parent db1c5daf
......@@ -31,4 +31,11 @@ public class BizExtractionDocFlowRestImpl implements BizExtractionDocFlowRest {
return BizExtractionDocFlowConvert.entityToDto(bizExtractionDocFlowEntityList.get(0));
}
public BizExtractionDocFlowDto update(BizExtractionDocFlowDto bizExtractionDocFlowDto) throws Exception {
BizExtractionDocFlowEntity bizExtractionDocFlowEntity = service.update(BizExtractionDocFlowConvert.dtoToEntity(bizExtractionDocFlowDto));
if(bizExtractionDocFlowEntity!=null){
return BizExtractionDocFlowConvert.entityToDto(bizExtractionDocFlowEntity);
}
return null;
}
}
\ No newline at end of file
......@@ -35,7 +35,6 @@ public class BizExtractionDocFlowServiceImpl extends BaseServiceImpl
return BizExtractionDocFlowConvert.modelToEntity(model);
}
public List<BizExtractionDocFlowEntity> findByExample(BizExtractionDocFlowEntity example,PagingInfo pagingInfo) throws Exception{
List<BizExtractionDocFlowEntity> result = new ArrayList<BizExtractionDocFlowEntity>();
BizExtractionDocFlowModel model = new BizExtractionDocFlowModel();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment