Commit 0ee20c62 authored by 廖旭伟's avatar 廖旭伟

查询待打印证件增加取件人姓名条件

parent a6ede68e
...@@ -11,6 +11,8 @@ public class PrintListPdu { ...@@ -11,6 +11,8 @@ public class PrintListPdu {
/** 打印服务ID */ /** 打印服务ID */
private Long serviceId; private Long serviceId;
private String pickerName;
private Long siteId; private Long siteId;
} }
...@@ -157,6 +157,7 @@ public class CertificatePrintController extends BaseJsonBodyController { ...@@ -157,6 +157,7 @@ public class CertificatePrintController extends BaseJsonBodyController {
PrintWaitQueueQuery query = new PrintWaitQueueQuery(); PrintWaitQueueQuery query = new PrintWaitQueueQuery();
query.setPrintStatus(YesNoEnum.NO.getValue()); query.setPrintStatus(YesNoEnum.NO.getValue());
query.setPickerIDCardNo(pdu.getIdCard()); query.setPickerIDCardNo(pdu.getIdCard());
query.setPickerName(pdu.getPickerName());
query.setSiteId(pdu.getSiteId()); query.setSiteId(pdu.getSiteId());
CertificateCatalogEntity catalogEntity = new CertificateCatalogEntity(); CertificateCatalogEntity catalogEntity = new CertificateCatalogEntity();
catalogEntity.setClassifyId(pdu.getClassifyId()); catalogEntity.setClassifyId(pdu.getClassifyId());
......
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