Commit 55ed202a authored by hezhuozhi's avatar hezhuozhi

车用气瓶--使用登记业务添加【使用登记表】字段之后保存接口调整

parent 20e4f98a
......@@ -269,4 +269,10 @@ public class JgVehicleInformationVo implements Serializable {
@ApiModelProperty(value = "是否有权限")
private Boolean havingPermission;
@ApiModelProperty("使用登记表url")
private String useRegistrationFormUrl;
@ApiModelProperty("使用登记表附件")
private JSONArray useRegistrationFormFile;
}
......@@ -631,6 +631,7 @@ public class JgVehicleInformationServiceImpl extends BaseService<JgVehicleInform
vo.setFilingNotice(ObjectUtils.isEmpty(dto.getFilingNotice()) ? null : JSON.parseArray(dto.getFilingNotice()));
vo.setOtherAccessories(ObjectUtils.isEmpty(dto.getOtherAccessories()) ? null : JSON.parseArray(dto.getOtherAccessories()));
vo.setCompanyInfo(reginParams.getCompany());
vo.setUseRegistrationFormFile(ObjectUtils.isEmpty(dto.getUseRegistrationFormFile()) ? null : JSON.parseArray(dto.getUseRegistrationFormFile()));
LambdaQueryWrapper<JgVehicleInformationEq> vehicleInfoEqWrapper = new QueryWrapper<JgVehicleInformationEq>().lambda();
vehicleInfoEqWrapper.eq(JgVehicleInformationEq::getVehicleId, sequenceNbr);
......
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