认证清单关联平台件
This commit is contained in:
+7
-7
@@ -6968,21 +6968,21 @@ public class ProjectCertificationInventoryEOServiceImpl extends ServiceImpl<Proj
|
|||||||
|
|
||||||
private void setProjectCertificationInventoryEO(ProjectCertificationInventoryEO certificationInventoryEO, ProjectCertificationInventoryEO projectCertificationInventoryEO) {
|
private void setProjectCertificationInventoryEO(ProjectCertificationInventoryEO certificationInventoryEO, ProjectCertificationInventoryEO projectCertificationInventoryEO) {
|
||||||
//交付物模板-deliverableTemplate
|
//交付物模板-deliverableTemplate
|
||||||
projectCertificationInventoryEO.setDeliverableTemplate(certificationInventoryEO.getDeliverableTemplate());
|
projectCertificationInventoryEO.setDeliverableTemplate(StringUtils.isNotEmpty(certificationInventoryEO.getDeliverableTemplate()) ? certificationInventoryEO.getDeliverableTemplate() : "");
|
||||||
//交付物类型-deliverableType
|
//交付物类型-deliverableType
|
||||||
projectCertificationInventoryEO.setDeliverableType(certificationInventoryEO.getDeliverableType());
|
projectCertificationInventoryEO.setDeliverableType(StringUtils.isNotEmpty(certificationInventoryEO.getDeliverableType()) ? certificationInventoryEO.getDeliverableType() : "");
|
||||||
//交付结果-deliveryResult
|
//交付结果-deliveryResult
|
||||||
projectCertificationInventoryEO.setDeliveryResult(certificationInventoryEO.getDeliveryResult());
|
projectCertificationInventoryEO.setDeliveryResult(StringUtils.isNotEmpty(certificationInventoryEO.getDeliveryResult()) ? certificationInventoryEO.getDeliveryResult() : "");
|
||||||
//截止日期-endTime
|
//截止日期-endTime
|
||||||
projectCertificationInventoryEO.setEndTime(certificationInventoryEO.getEndTime());
|
projectCertificationInventoryEO.setEndTime(certificationInventoryEO.getEndTime());
|
||||||
//流程状态-flowStatus
|
//流程状态-flowStatus
|
||||||
projectCertificationInventoryEO.setFlowStatus(certificationInventoryEO.getFlowStatus());
|
projectCertificationInventoryEO.setFlowStatus(StringUtils.isNotEmpty(certificationInventoryEO.getFlowStatus()) ? certificationInventoryEO.getFlowStatus() : "");
|
||||||
//报告编号-reportNumber
|
//报告编号-reportNumber
|
||||||
projectCertificationInventoryEO.setReportNumber(certificationInventoryEO.getReportNumber());
|
projectCertificationInventoryEO.setReportNumber(StringUtils.isNotEmpty(certificationInventoryEO.getReportNumber()) ? certificationInventoryEO.getReportNumber() : "");
|
||||||
//产品型号-productModel
|
//产品型号-productModel
|
||||||
projectCertificationInventoryEO.setProductModel(certificationInventoryEO.getProductModel());
|
projectCertificationInventoryEO.setProductModel(StringUtils.isNotEmpty(certificationInventoryEO.getProductModel()) ? certificationInventoryEO.getProductModel() : "");
|
||||||
//生产企业名称-productionEnterpriseName
|
//生产企业名称-productionEnterpriseName
|
||||||
projectCertificationInventoryEO.setProductionEnterpriseName(certificationInventoryEO.getProductionEnterpriseName());
|
projectCertificationInventoryEO.setProductionEnterpriseName(StringUtils.isNotEmpty(certificationInventoryEO.getProductionEnterpriseName()) ? certificationInventoryEO.getProductionEnterpriseName() : "");
|
||||||
}
|
}
|
||||||
// public void listPlatform(Map<String,Object> params) {
|
// public void listPlatform(Map<String,Object> params) {
|
||||||
// String cut = (String) params.get("cut");//
|
// String cut = (String) params.get("cut");//
|
||||||
|
|||||||
Reference in New Issue
Block a user