Commit 345e7312 authored by wanghao's avatar wanghao

1 液化石油气监管-气瓶档案-第三方对接接口开发

parent 8d2145db
...@@ -149,11 +149,11 @@ public class TLpgGasBottleFiles extends BaseEntity ...@@ -149,11 +149,11 @@ public class TLpgGasBottleFiles extends BaseEntity
//@Excel(name = "检验报告照片") //@Excel(name = "检验报告照片")
private String checkImage; private String checkImage;
/** 产品编号照片 */ /** 产品编号照片 2024-09-13 wh 去掉 界面上不展示了*/
//@Excel(name = "产品编号照片") //@Excel(name = "产品编号照片")
private String equNoImage; private String equNoImage;
/** 单位内编号照片 */ /** 单位内编号照片 2024-09-13 wh 去掉 界面上不展示了*/
//@Excel(name = "单位内编号照片") //@Excel(name = "单位内编号照片")
private String selfIdImage; private String selfIdImage;
......
...@@ -3,6 +3,7 @@ package com.zehong.system.service; ...@@ -3,6 +3,7 @@ package com.zehong.system.service;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import com.zehong.common.core.domain.AjaxResult;
import com.zehong.system.domain.TLpgGasBottleFiles; import com.zehong.system.domain.TLpgGasBottleFiles;
import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpServletResponse;
...@@ -78,4 +79,11 @@ public interface ITLpgGasBottleFilesService ...@@ -78,4 +79,11 @@ public interface ITLpgGasBottleFilesService
*/ */
public void importLpgGasBottleFilesInfo(List<TLpgGasBottleFiles> xmbhList, boolean updateSupport, HttpServletResponse response); public void importLpgGasBottleFilesInfo(List<TLpgGasBottleFiles> xmbhList, boolean updateSupport, HttpServletResponse response);
/**
* 第三方对接 新增数据
* @param list l
* @return r
*/
public int externalDockingCreateLpgGasBottleFiles(List<TLpgGasBottleFiles> list);
} }
...@@ -3,7 +3,9 @@ package com.zehong.system.service.impl; ...@@ -3,7 +3,9 @@ package com.zehong.system.service.impl;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import com.zehong.common.core.domain.AjaxResult;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import com.zehong.system.mapper.TLpgGasBottleFilesMapper; import com.zehong.system.mapper.TLpgGasBottleFilesMapper;
import com.zehong.system.domain.TLpgGasBottleFiles; import com.zehong.system.domain.TLpgGasBottleFiles;
...@@ -24,6 +26,7 @@ public class TLpgGasBottleFilesServiceImpl implements ITLpgGasBottleFilesService ...@@ -24,6 +26,7 @@ public class TLpgGasBottleFilesServiceImpl implements ITLpgGasBottleFilesService
@Resource @Resource
private TLpgGasBottleFilesMapper tLpgGasBottleFilesMapper; private TLpgGasBottleFilesMapper tLpgGasBottleFilesMapper;
/** /**
* 查询液化石油气-气瓶档案 * 查询液化石油气-气瓶档案
* *
...@@ -119,4 +122,15 @@ public class TLpgGasBottleFilesServiceImpl implements ITLpgGasBottleFilesService ...@@ -119,4 +122,15 @@ public class TLpgGasBottleFilesServiceImpl implements ITLpgGasBottleFilesService
tLpgGasBottleFilesMapper.insertBatch(xmbhList); tLpgGasBottleFilesMapper.insertBatch(xmbhList);
} }
} }
/**
* 第三方对接 创建数据
* @param list d
* @return r
*/
@Override
public int externalDockingCreateLpgGasBottleFiles(List<TLpgGasBottleFiles> list) {
return tLpgGasBottleFilesMapper.insertBatch(list);
}
} }
...@@ -197,7 +197,7 @@ ...@@ -197,7 +197,7 @@
<span v-else>-</span> <span v-else>-</span>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="12"> <!-- <el-col :span="12"> 2024-09-13 wh 去掉 界面不展示了
<el-form-item label="产品编号照片"> <el-form-item label="产品编号照片">
<el-image <el-image
:src="detailInfo.equNoImage" :src="detailInfo.equNoImage"
...@@ -220,7 +220,7 @@ ...@@ -220,7 +220,7 @@
></el-image> ></el-image>
<span v-else>-</span> <span v-else>-</span>
</el-form-item> </el-form-item>
</el-col> </el-col> -->
<el-col :span="12"> <el-col :span="12">
<el-form-item label="钢瓶信息照片"> <el-form-item label="钢瓶信息照片">
<el-image <el-image
......
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