供应商关联表导入

master
anthonyywj2 3 years ago
parent 7027235124
commit 799e27a128

@ -1,6 +1,7 @@
package com.glxp.api;
import com.glxp.api.admin.util.HardWareUtils;
import com.glxp.api.admin.util.MyHardWareUtils;
import com.glxp.api.admin.util.RsaUtils;
import org.springframework.context.ApplicationContextInitializer;
import org.springframework.context.ConfigurableApplicationContext;
@ -20,7 +21,7 @@ public class ToolApplicationContextInitializer implements ApplicationContextInit
"swIDAQAB";
try {
String result = RsaUtils.publicKeyDecrypt(myKey, publicKey);
String hardInfo = HardWareUtils.getMachineInfo();
String hardInfo = MyHardWareUtils.getHardDiskSN();
// if (!result.equals(hardInfo)) {
// System.exit(1);
// }

@ -293,9 +293,9 @@ public class WareHouseController {
}
//往来单位信息文件导入
//单据文件导入
@PostMapping("/udiwms/orders/file/upload")
public BaseResponse uploadProducts(@RequestParam("file") List<MultipartFile> files) {
public BaseResponse uploadOrders(@RequestParam("file") List<MultipartFile> files) {
for (int i = 0; i < files.size(); i++) {
MultipartFile file = files.get(i);
if (file.isEmpty()) {

@ -187,5 +187,7 @@ public class HardWareUtils extends Applet {
String encryptHex = sm4.encryptHex("rT7DaHDt68m9IjVr" + msg);
String decryptStr = sm4.decryptStr(encryptHex, CharsetUtil.CHARSET_UTF_8);
System.out.println("加密后:" + msg);//rT7DaHDt68m9IjVr
MyHardWareUtils.getCPUID();
}
}

@ -0,0 +1,759 @@
package com.glxp.api.admin.util
import java.util.logging.Logger
import java.util.regex.Matcher
import java.util.regex.Pattern
class MyHardWareUtils {
private static Logger logger = Logger.getLogger(HardWareUtils.class);
private static String OSName = System.getProperty("os.name").toLowerCase();
public static List<String> listResult = new ArrayList<String>();
public HardWareUtils() {
logger.info("------当前系统版本-----" + OSName);
}
/**
*
*/
public static String getOSName() {
return OSName;
}
// windows
private static String getMainBordId_windows() {
String result = "";
try {
File file = File.createTempFile("realhowto", ".vbs");
file.deleteOnExit();
FileWriter fw = new java.io.FileWriter(file);
String vbs = "Set objWMIService = GetObject(\"winmgmts:\\\\.\\root\\cimv2\")\n"
+"Set colItems = objWMIService.ExecQuery _ \n" + " (\"Select * from Win32_BaseBoard\") \n"
+"For Each objItem in colItems \n" + " Wscript.Echo objItem.SerialNumber \n"
+" exit for ' do the first cpu only! \n" + "Next \n";
fw.write(vbs);
fw.close();
Process p = Runtime.getRuntime().exec("cscript //NoLogo " + file.getPath());
BufferedReader input = new BufferedReader(new InputStreamReader(p.getInputStream()));
String line;
while ((line = input.readLine()) != null) {
result += line;
}
input.close();
} catch (Exception e) {
logger.error("获取主板信息错误", e);
}
return result.trim();
}
// linux
private static String getMainBordId_linux() {
String result = "";
String maniBord_cmd = /dmidecode | grep 'Serial Number' | awk '{print $3}' | tail -1/;
Process p;
try {
p = Runtime.getRuntime().exec(new String[]{"sh", "-c", maniBord_cmd});//
BufferedReader br = new BufferedReader(new InputStreamReader(p.getInputStream()));
String line;
while ((line = br.readLine()) != null) {
result += line;
break;
}
br.close();
} catch (IOException e) {
logger.error("获取主板信息错误", e);
}
return result;
}
/**
* mac Linuxeth0
*/
private static String getMAC_linux() {
String mac = null;
BufferedReader bufferedReader = null;
Process process = null;
try {
// linuxeth0
process = Runtime.getRuntime().exec("ifconfig eth0");
// mac
bufferedReader = new BufferedReader(new InputStreamReader(process.getInputStream()));
String line = null;
int index = -1;
while ((line = bufferedReader.readLine()) != null) {
// [hwaddr]
index = line.toLowerCase().indexOf("hwaddr");
if (index >= 0) {//
// mac2
mac = line.substring(index + "hwaddr".length() + 1).trim();
break;
}
}
} catch (IOException e) {
logger.error("获取mac信息错误", e);
} finally {
try {
if (bufferedReader != null) {
bufferedReader.close();
}
} catch (IOException e1) {
logger.error("获取mac信息错误", e1);
}
bufferedReader = null;
process = null;
}
return mac;
}
/**
* Linuxmac
*/
private static String getMAC_linuxs() {
String mac = null;
BufferedReader bufferedReader = null;
Process process = null;
try {
// linuxeth0
process = Runtime.getRuntime().exec("ifconfig");
// mac
bufferedReader = new BufferedReader(new InputStreamReader(process.getInputStream()));
String line = null;
int index = -1;
while ((line = bufferedReader.readLine()) != null) {
Pattern pat = Pattern.compile("\\b\\w+:\\w+:\\w+:\\w+:\\w+:\\w+\\b");
Matcher mat = pat.matcher(line);
if (mat.find()) {
mac = mat.group(0);
}
}
} catch (IOException e) {
logger.error("获取mac信息错误", e);
} finally {
try {
if (bufferedReader != null) {
bufferedReader.close();
}
} catch (IOException e1) {
logger.error("获取mac信息错误", e1);
}
bufferedReader = null;
process = null;
}
return mac;
}
/**
* widnowsmac.
*/
private static String getMAC_windows() {
InetAddress ip = null;
NetworkInterface ni = null;
List<String> macList = new ArrayList<String>();
try {
Enumeration<NetworkInterface> netInterfaces = (Enumeration<NetworkInterface>) NetworkInterface
.getNetworkInterfaces();
while (netInterfaces.hasMoreElements()) {
ni = (NetworkInterface) netInterfaces.nextElement();
// ----------ni.getName
// ip
Enumeration<InetAddress> ips = ni.getInetAddresses();
while (ips.hasMoreElements()) {
ip = (InetAddress) ips.nextElement();
if (!ip.isLoopbackAddress() // 127.0.0.1
&& ip.getHostAddress().matches("(\\d{1,3}\\.){3}\\d{1,3}")) {
macList.add(getMacFromBytes(ni.getHardwareAddress()));
}
}
}
} catch (Exception e) {
logger.error("获取mac错误", e);
}
if (macList.size() > 0) {
return macList.get(0);
} else {
return "";
}
}
private static String getMacFromBytes(byte[] bytes) {
StringBuffer mac = new StringBuffer();
byte currentByte;
boolean first = false;
for (byte b : bytes) {
if (first) {
mac.append("-");
}
currentByte = (byte) ((b & 240) >> 4);
mac.append(Integer.toHexString(currentByte));
currentByte = (byte) (b & 15);
mac.append(Integer.toHexString(currentByte));
first = true;
}
return mac.toString().toUpperCase();
}
/**
* CPU Windows
*
* @return
*/
private static String getCPUID_Windows() {
String result = "";
try {
File file = File.createTempFile("tmp", ".vbs");
file.deleteOnExit();
FileWriter fw = new java.io.FileWriter(file);
String vbs = "Set objWMIService = GetObject(\"winmgmts:\\\\.\\root\\cimv2\")\n"
+"Set colItems = objWMIService.ExecQuery _ \n" + " (\"Select * from Win32_Processor\") \n"
+"For Each objItem in colItems \n" + " Wscript.Echo objItem.ProcessorId \n"
+" exit for ' do the first cpu only! \n" + "Next \n";
fw.write(vbs);
fw.close();
Process p = Runtime.getRuntime().exec("cscript //NoLogo " + file.getPath());
BufferedReader input = new BufferedReader(new InputStreamReader(p.getInputStream()));
String line;
while ((line = input.readLine()) != null) {
result += line;
}
input.close();
file.delete();
} catch (Exception e) {
logger.error("获取windows cpu信息错误", e);
}
return result.trim();
}
/**
* CPU linux
*
* @return
*/
private static String getCPUID_linux() throws InterruptedException {
String result = "";
String CPU_ID_CMD = "dmidecode";
BufferedReader bufferedReader = null;
Process p = null;
try {
p = Runtime.getRuntime().exec(new String[]{"sh", "-c", CPU_ID_CMD});//
bufferedReader = new BufferedReader(new InputStreamReader(p.getInputStream()));
String line = null;
int index = -1;
while ((line = bufferedReader.readLine()) != null) {
// [hwaddr]
index = line.toLowerCase().indexOf("uuid");
if (index >= 0) {//
// mac2
result = line.substring(index + "uuid".length() + 1).trim();
break;
}
}
} catch (IOException e) {
logger.error("获取liunx cpu信息错误", e);
}
return result.trim();
}
/**
* ( ,) C,D
*
* @param drive
* @return
*/
private static String getHardDiskSN_Windows(String drive) {
String result = "";
try {
File file = File.createTempFile("realhowto", ".vbs");
file.deleteOnExit();
FileWriter fw = new java.io.FileWriter(file);
String vbs = "Set objFSO = CreateObject(\"Scripting.FileSystemObject\")\n"
+"Set colDrives = objFSO.Drives\n"
+"Set objDrive = colDrives.item(\""
+drive
+"\")\n"
+"Wscript.Echo objDrive.SerialNumber"; // see note
fw.write(vbs);
fw.close();
String path = file.getPath().replace("%20", " ");
Process p = Runtime.getRuntime().exec(
"cscript //NoLogo " + path);
BufferedReader input = new BufferedReader(new InputStreamReader(
p.getInputStream()));
String line;
while ((line = input.readLine()) != null) {
result += line;
}
input.close();
} catch (Exception e) {
e.printStackTrace();
}
return result.trim();
}
private static String getBiosSN_Windows() {
String result = "";
try {
Runtime rt = Runtime.getRuntime();
Process p = rt.exec("cmd.exe /c wmic bios get serialnumber");
BufferedReader input = new BufferedReader(new InputStreamReader(
p.getInputStream()));
String line;
while ((line = input.readLine()) != null) {
result += line;
}
input.close();
} catch (Exception e) {
e.printStackTrace();
throw new RuntimeException();
}
return result.split("SerialNumber")[1].trim().toString();
}
/***************************linux下 通过执行shell读取 *********************************/
/**
* Javashell
* @param shellName
* @throws Exception
*/
public static void service(String shellName) throws Exception {
String shellDir = "";
String shellPath = "";
try {
//
String configFilePath = Thread.currentThread().getContextClassLoader().getResource("jdbc.properties").getPath();
File f = new File(configFilePath);
shellDir = f.getParent().split("java")[0];
logger.info("shell dir = " + shellDir);
//
shellPath = shellDir + "java/solution/Shell/" + shellName;
logger.info("shell path = " + shellPath);
//
callScript(shellPath);
} catch (Exception e) {
logger.error("ShellExcutor异常" + e.getMessage(), e);
throw e;
}
}
/**
*
* @param script
* @throws Exception
*/
private static void callScript(String script) throws Exception {
try {
String cmd = "sh " + script;
try {
//
ProcessBuilder builder = new ProcessBuilder("/bin/chmod", "755", script);
Process chmodprocess = builder.start();
int w = chmodprocess.waitFor();
if (w != 0) {
logger.error("------callScript 开启脚本权限不成功!");
BufferedReader erro_br = new BufferedReader(new InputStreamReader(chmodprocess.getErrorStream())); ;
String erroResult = "";
String l = "";
while ((l = erro_br.readLine()) != null) {
erroResult += l + "\n";
}
if (erroResult.length() > 0)
logger.error("-----callScript erro" + erroResult);
erro_br.close();
}
chmodprocess.destroy();
} catch (Exception e) {
// TODO: handle exception
}
// //线process
// CommandWaitForThread commandThread = new CommandWaitForThread(cmd);
// commandThread.start();
//
// while (!commandThread.isFinish()) {
// logger.info("shell " + script + " 还未执行完毕,10s后重新探测");
// Thread.sleep(10000);
// }
//
// //
// if(commandThread.getExitValue() != 0){
// throw new Exception("shell " + script + "执行失败,exitValue = " + commandThread.getExitValue());
// }
// logger.info("shell " + script + "执行成功,exitValue = " + commandThread.getExitValue());
logger.info("------callScript cmd job : " + cmd);
Scanner input = null;
Process process = null;
try {
//sh便
//process = Runtime.getRuntime().exec(new String[] { "/bin/sh", "-c", cmd });
process = Runtime.getRuntime().exec(cmd);
try {
//
//process.waitFor(10, TimeUnit.SECONDS)
int waitfor = process.waitFor();
if (waitfor != 0) {
logger.error("------callScript 执行命令不成功!");
BufferedReader erro_br = new BufferedReader(new InputStreamReader(process.getErrorStream())); ;
String erroResult = "";
String l = "";
while ((l = erro_br.readLine()) != null) {
erroResult += l + "\n";
}
if (erroResult.length() > 0)
logger.error("-----callScript erro" + erroResult);
erro_br.close();
}
} catch (InterruptedException e) {
e.printStackTrace();
}
BufferedReader br = new BufferedReader(new InputStreamReader(process.getInputStream()));
String line;
while ((line = br.readLine()) != null) {
listResult.add(line);
}
br.close();
} finally {
if (input != null) {
input.close();
}
if (process != null) {
process.destroy();
}
}
}
catch (Exception e) {
throw new Exception("执行脚本发生异常,脚本路径" + script, e);
}
}
/**
* 线
*/
private static class CommandWaitForThread extends Thread {
private String cmd;
private boolean finish = false;
private int exitValue = -1;
public CommandWaitForThread(String cmd) {
this.cmd = cmd;
}
public void run() {
try {
//
Process process = Runtime.getRuntime().exec(cmd);
//
BufferedReader infoInput = new BufferedReader(new InputStreamReader(process.getInputStream()));
BufferedReader errorInput = new BufferedReader(new InputStreamReader(process.getErrorStream()));
String line = "";
while ((line = infoInput.readLine()) != null) {
logger.info(line);
}
while ((line = errorInput.readLine()) != null) {
logger.error(line);
}
infoInput.close();
errorInput.close();
//线
this.exitValue = process.waitFor();
} catch (Throwable e) {
logger.error("CommandWaitForThread accure exception,shell " + cmd, e);
exitValue = 110;
} finally {
finish = true;
}
}
public boolean isFinish() {
return finish;
}
public void setFinish(boolean finish) {
this.finish = finish;
}
public int getExitValue() {
return exitValue;
}
}
/**
*
*/
private static String getInfoByName(String name) {
String infoString = "";
try {
if (listResult.size() == 0)
service("HardWareInfo.sh");
for (String line : listResult) {
if (line.contains(name)) {
String[] r = line.replace(name + ":", "").trim().split(":");
if (r.length > 1) {
if (r.length == 2)
return r[1];
else {
// 00:16:3e:0a:6d:70
String rString = "";
for (int i = 0; i < r.length; i++) {
rString += ":" + r[i];
}
return rString.split(":", 2)[1];
}
} else
return r[0];
}
}
} catch (Exception e) {
// TODO: handle exception
logger.error("------getInfoByName " + name + ":" + e.getMessage(), e);
throw new RuntimeException();
}
return infoString;
}
/***************************linux下 通过命令读取 *********************************/
private static String executeLinuxCmd(String cmd) throws IOException {
logger.info("------executeLinuxCmd got cmd job : " + cmd);
Scanner input = null;
String result = "";
Process process = null;
try {
//sh便
process = Runtime.getRuntime().exec(new String[]{"/bin/sh", "-c", cmd});
try {
//
//process.waitFor(10, TimeUnit.SECONDS)
int waitfor = process.waitFor();
if (waitfor != 0)
logger.error("------executeLinuxCmd 执行命令不成功!");
} catch (InterruptedException e) {
e.printStackTrace();
}
// InputStream is = process.getInputStream();
// input = new Scanner(is);
// while (input.hasNextLine()) {
// result += input.nextLine() + "\n";
// }
BufferedReader br = new BufferedReader(new InputStreamReader(process.getInputStream()));
String line;
while ((line = br.readLine()) != null) {
result += line;
break;
}
br = new BufferedReader(new InputStreamReader(process.getErrorStream())); ;
String erroResult = "";
while ((line = br.readLine()) != null) {
erroResult += line + "\n";
}
if (erroResult.length() > 0)
logger.error("-----executeLinuxCmd erro" + erroResult);
br.close();
//result = cmd + "\n" + result; //
} finally {
if (input != null) {
input.close();
}
if (process != null) {
process.destroy();
}
}
return result;
}
/**
*
* @param cmd
* @param record
* @param symbol
* @return
*/
private static String getSerialNumber(String cmd, String record, String symbol) {
try {
String execResult = executeLinuxCmd(cmd);
logger.info("------getSerialNumber execResult:" + execResult);
String[] infos = execResult.split("\n");
for (String info : infos) {
info = info.trim();
if (info.indexOf(record) != -1) {
info.replace(" ", "");
String[] sn = info.split(symbol);
logger.info("------getSerialNumber return:" + sn[1]);
return sn[1];
}
}
} catch (Exception e) {
// TODO: handle exception
//e.printStackTrace();
logger.error(e);
throw new RuntimeException();
}
return "";
}
/**
* linux fdisk -l |grep 'Disk identifier'
* @return
*/
private static String getHardDiskSN_Linux() {
return getSerialNumber("fdisk -l", "Disk identifier", ":").replace(" ", "");
}
/**
* linux Bios
* @return
*/
private static String getBiosVersion_Linux() {
return getSerialNumber("dmidecode -s bios-version", "", "").trim();
}
/**
* linux Bios Serial Number: Not Specified
* @return
*/
private static String getMemroySN_Linux() {
return getSerialNumber("dmidecode -t memory |grep 'Serial Number'", "", "").split(":")[1].trim();
}
/**
* CPU linux
*
* @return
*/
private static String getCPUID_linux2() {
return getSerialNumber("dmidecode -t processor | grep 'ID'", "", "").split(":")[1].trim();
}
// linux
private static String getMainBordId_linux2() {
return getSerialNumber("dmidecode | grep 'Serial Number'", "", "").split(":")[1].trim();
}
/***************************整合*********************************/
/**
* CPU
*
* @return
*/
public static String getCPUID() {
logger.info("------当前系统版本-----" + OSName);
try {
if (OSName != null && OSName.indexOf("linux") > -1) {
//return getCPUID_linux2();
return getInfoByName("cpuid");
} else {
return getCPUID_Windows();
}
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
throw new RuntimeException();
}
}
/**
*
*
* @return
*/
public static String getMainBordId() {
try {
if (OSName != null && OSName.indexOf("linux") > -1) {
//return getMainBordId_linux2();
return getInfoByName("mainborid");
} else {
return getMainBordId_windows();
}
} catch (Exception e) {
// TODO Auto-generated catch block
logger.error("------getMainBordId------:" + e.getMessage());
throw new RuntimeException();
}
}
/**
* linux
* @return
*/
public static String getHardDiskSN() {
try {
if (OSName != null && OSName.indexOf("linux") > -1) {
//return getHardDiskSN_Linux();
return getInfoByName("harddisksn");
} else {
return getHardDiskSN_Windows("C");
}
} catch (Exception e) {
// TODO Auto-generated catch block
logger.error("------getHardDiskSN------:" + e.getMessage());
throw new RuntimeException();
}
}
/**
* bios
* @return
*/
public static String getBiosSN() {
try {
if (OSName != null && OSName.indexOf("linux") > -1) {
//return getBiosVersion_Linux();
return getInfoByName("biossn");
} else {
return getBiosSN_Windows();
}
} catch (Exception e) {
logger.error("------getBiosSN------:" + e.getMessage());
throw new RuntimeException();
}
}
//
/**
* widnowsmac.
*/
public static String getMAC() {
try {
if (OSName != null && OSName.indexOf("linux") > -1) {
//return getMAC_linuxs();
return getInfoByName("mac");
} else {
return getMAC_windows();
}
} catch (Exception e) {
logger.error("------getMAC------:" + e.getMessage());
throw new RuntimeException();
}
}
}

@ -25,6 +25,7 @@ file_path=D:/1s/udiwms/udiwmsfile/
#UDI数据下载
UDI_KEY=6b137c66-6286-46c6-8efa-c2f5dd9237df
UDI_SERVER_URL=https://www.udims.com/UDI_DL_Server_test
SPMS_KEY=lCOdWCBKS6Kw45wdnnqUTELXyuSKnXEs
#中转服务IP地址
SPSYNC_IP=http://127.0.0.1:9989
#SPSYNC_IP=http://192.168.0.109:8080/SP_SYNC_SERVER

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.glxp.api.admin.dao.info.CompanyProductRelevanceDao">
<mapper namespace="com.glxp.api.admin.dao.basic.CompanyProductRelevanceDao">
<select id="filterCompanyProductRelevance"
parameterType="com.glxp.api.admin.req.basic.FilterCompanyProductRelevanceRequest"

@ -0,0 +1,40 @@
/*
Navicat Premium Data Transfer
Source Server : mysql
Source Server Type : MySQL
Source Server Version : 80021
Source Host : localhost:3306
Source Schema : udiwms
Target Server Type : MySQL
Target Server Version : 80021
File Encoding : 65001
Date: 07/03/2022 17:58:14
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for company_product_relevance
-- ----------------------------
DROP TABLE IF EXISTS `company_product_relevance`;
CREATE TABLE `company_product_relevance` (
`id` int UNSIGNED NOT NULL AUTO_INCREMENT,
`customerId` bigint NOT NULL,
`productId` bigint NULL DEFAULT NULL,
`enterpriseId` bigint NULL DEFAULT NULL,
`registrationId` bigint NULL DEFAULT NULL,
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`auditStatus` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '审核状态 1通过2不通过3反审',
`productUuid` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL,
`udiRlIdFk` bigint NULL DEFAULT NULL COMMENT '基础信息维护表关联主键',
`unitFk` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '往来单位ID外键',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `udiRlIdFk`(`udiRlIdFk`, `customerId`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 141 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC;
SET FOREIGN_KEY_CHECKS = 1;
Loading…
Cancel
Save