烘房看板接口

highway
Yangwl 10 months ago
parent cec59e4bc4
commit bb0ac02cc8

@ -0,0 +1,40 @@
@echo off
echo --------------------------------自定义参数,启动前先修改--------------------------------------
set jarName=op-modules-mes.jar
set profile=dev
set imageURI=192.168.202.36:30002/op-lanju/op-mes
rem echo 获取当前日期字符串
for /f "tokens=1,2,3 delims=/- " %%a in ("%date%") do @set D=%%a%%b%%c
rem echo 获取当前时间字符串
for /f "tokens=1,2 delims=:." %%a in ("%time%") do @set T=%%a%%b
rem echo 如当前小时小于10将空格替换为0
set T=%T: =0%
rem echo 显示输出日期时间字符串
set imageVersion=%D%%T%
::输出发版信息
echo jar包名称:%jarName%
echo 启动环境:%profile%
echo 镜像库地址:%imageURI%
echo 镜像版本:%imageVersion%
echo --------------------------------mvn package...--------------------------------
::call mvn clean package -Dmaven.test.skip=true
cd .\target
SET df=Dockerfile
if exist %df% (
del /f /s /q .\Dockerfile
)
echo --------------------------------创建Dockerfile--------------------------------
echo FROM 192.168.202.36:30002/library/openjdk:8u131-jdk-alpine >> Dockerfile
echo COPY %jarName% /application.jar >> Dockerfile
echo RUN echo "Asia/Shanghai" ^> /etc/timezone >> Dockerfile
echo CMD ["java", "-jar", "-Dspring.profiles.active=%profile%", "application.jar"] >> Dockerfile
dir
echo --------------------------------docker login...-------------------------------
docker login 192.168.202.36:30002 -u deploy -p Deploy@2023
echo --------------------------------docker build...-------------------------------
docker build -t %imageURI%:%imageVersion% .
echo --------------------------------docker push...--------------------------------
docker push %imageURI%:%imageVersion%
@pause

@ -0,0 +1,40 @@
package com.op.mes.domain;
public class BufferInfoParam {
private String reqCode;
private String reqTime;
private String factory;
private String bufferType;
public String getReqCode() {
return reqCode;
}
public void setReqCode(String reqCode) {
this.reqCode = reqCode;
}
public String getReqTime() {
return reqTime;
}
public void setReqTime(String reqTime) {
this.reqTime = reqTime;
}
public String getFactory() {
return factory;
}
public void setFactory(String factory) {
this.factory = factory;
}
public String getBufferType() {
return bufferType;
}
public void setBufferType(String bufferType) {
this.bufferType = bufferType;
}
}

@ -0,0 +1,47 @@
/**
* Copyright 2023 json.cn
*/
package com.op.mes.domain.buffer;
import java.util.List;
/**
* Auto-generated: 2023-11-10 11:26:39
*
* @author json.cn (i@json.cn)
* @website http://www.json.cn/java2pojo/
*/
public class JsonRootBean {
private String reqCode;
private int code;
private String message;
private List<Locations> locations;
public void setReqCode(String reqCode) {
this.reqCode = reqCode;
}
public String getReqCode() {
return reqCode;
}
public void setCode(int code) {
this.code = code;
}
public int getCode() {
return code;
}
public void setMessage(String message) {
this.message = message;
}
public String getMessage() {
return message;
}
public void setLocations(List<Locations> locations) {
this.locations = locations;
}
public List<Locations> getLocations() {
return locations;
}
}

@ -0,0 +1,78 @@
/**
* Copyright 2023 json.cn
*/
package com.op.mes.domain.buffer;
/**
* Auto-generated: 2023-11-10 11:26:39
*
* @author json.cn (i@json.cn)
* @website http://www.json.cn/java2pojo/
*/
public class Locations {
private String location;
private String bufferType;
private boolean isBooked;
private boolean isUsed;
private boolean isOccupeid;
private String rfid;
private String reason;
private String sku;
public void setLocation(String location) {
this.location = location;
}
public String getLocation() {
return location;
}
public void setBufferType(String bufferType) {
this.bufferType = bufferType;
}
public String getBufferType() {
return bufferType;
}
public void setIsBooked(boolean isBooked) {
this.isBooked = isBooked;
}
public boolean getIsBooked() {
return isBooked;
}
public void setIsUsed(boolean isUsed) {
this.isUsed = isUsed;
}
public boolean getIsUsed() {
return isUsed;
}
public void setIsOccupeid(boolean isOccupeid) {
this.isOccupeid = isOccupeid;
}
public boolean getIsOccupeid() {
return isOccupeid;
}
public void setRfid(String rfid) {
this.rfid = rfid;
}
public String getRfid() {
return rfid;
}
public void setReason(String reason) {
this.reason = reason;
}
public String getReason() {
return reason;
}
public void setSku(String sku) {
this.sku = sku;
}
public String getSku() {
return sku;
}
}
Loading…
Cancel
Save