第一次提交

master
lulicheng 10 months ago
commit 54e1747c5b

@ -0,0 +1,108 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.ipsplm</groupId>
<artifactId>cosco-shipping-heavy</artifactId>
<version>1.0</version>
<name>cosco-shipping-heavy</name>
<description>中远海运重工</description>
<properties>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<spring-boot.version>2.6.13</spring-boot.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.76</version>
</dependency>
<!--自定义通用模块-->
<dependency>
<groupId>com.ipsplm</groupId>
<artifactId>common-api</artifactId>
<version>1.0</version>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>5.7.22</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot.version}</version>
<configuration>
<mainClass>com.ipsplm.CoscoShippingHeavyApplication</mainClass>
<skip>true</skip>
</configuration>
<executions>
<execution>
<id>repackage</id>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

@ -0,0 +1,13 @@
package com.ipsplm;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class CoscoShippingHeavyApplication {
public static void main(String[] args) {
SpringApplication.run(CoscoShippingHeavyApplication.class, args);
}
}

@ -0,0 +1,154 @@
package com.ipsplm.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* <p>
* 线
* </p>
*
* @author lulicheng
* @since 2024-07-30
*/
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("buffernum_bxg")
public class BufferNumBxg implements Serializable {
private static final long serialVersionUID = 1L;
/**
*
*/
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/**
*
*/
private Long flag;
/**
* 线线
*/
private String bxgBufferL;
/**
*
*/
private String bxgWgjQ;
/**
*
*/
private String bxgWgjH;
/**
*
*/
private String bxgZgqdQ;
/**
*
*/
private String bxgZgqdH;
/**
*
*/
private String bxgXzlQ;
/**
*
*/
private String bxgXzlH;
/**
*
*/
private String bxgWthjjQ;
/**
*
*/
private String bxgWthhjH;
/**
* 1
*/
private String bxgZppt1Q;
/**
* 1
*/
private String bxgZppt1H;
/**
* 2
*/
private String bxgZppt2Q;
/**
* 2
*/
private String bxgZppt2H;
/**
* 1
*/
private String bxgHjgw1Q;
/**
* 1
*/
private String bxgHjgw1H;
/**
* 2
*/
private String bxgHjgw2Q;
/**
* 2
*/
private String bxgHjgw2H;
/**
* 3
*/
private String bxgHjgw3Q;
/**
* 3
*/
private String bxgHjgw3H;
/**
*
*/
private String bxgYcwjQ;
/**
*
*/
private String bxgYcwjH;
/**
*
*/
private String bxgSsQ;
/**
*
*/
private String tsQ;
/**
*
*/
private String tsH;
}

@ -0,0 +1,179 @@
package com.ipsplm.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* <p>
* 线
* </p>
*
* @author lulicheng
* @since 2024-07-30
*/
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("buffernum_dj")
public class BufferNumDj implements Serializable {
private static final long serialVersionUID = 1L;
/**
*
*/
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/**
*
*/
private Long flag;
/**
* 线线1
*/
private String djBuffer1L;
/**
* 线线2
*/
private String djBuffer2L;
/**
*
*/
private String djZgqdQ;
/**
*
*/
private String djZgqdH;
/**
*
*/
private String djXzlQ;
/**
*
*/
private String djXzlH;
/**
*
*/
private String djWthjjQ;
/**
*
*/
private String djWthhjH;
/**
* 1
*/
private String djZppt1Q;
/**
* 1
*/
private String djZppt1H;
/**
* 2
*/
private String djZppt2Q;
/**
* 2
*/
private String djZppt2H;
/**
* 3
*/
private String djZppt3Q;
/**
* 3
*/
private String djZppt3H;
/**
* 4
*/
private String djZppt4Q;
/**
* 4
*/
private String djZppt4H;
/**
* 1
*/
private String djHjgw1Q;
/**
* 1
*/
private String djHjgw1H;
/**
* 2
*/
private String djHjgw2Q;
/**
* 2
*/
private String djHjgw2H;
/**
* 3
*/
private String djHjgw3Q;
/**
* 3
*/
private String djHjgw3H;
/**
* 4
*/
private String djHjgw4Q;
/**
* 4
*/
private String djHjgw4H;
/**
* 5
*/
private String djHjgw5Q;
/**
* 5
*/
private String djHjgw5H;
/**
*
*/
private String djYcwjQ;
/**
*
*/
private String djYcwjH;
/**
*
*/
private String djSsQ;
}

@ -0,0 +1,214 @@
package com.ipsplm.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* <p>
* 线
* </p>
*
* @author lulicheng
* @since 2024-07-30
*/
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("buffernum_xe")
public class BufferNumXe implements Serializable {
private static final long serialVersionUID = 1L;
/**
*
*/
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/**
*
*/
private Long flag;
/**
* 线线
*/
private String xeBufferL;
/**
* 1
*/
private String xeWgj1Q;
/**
* 1
*/
private String xeWgj1H;
/**
* 2
*/
private String xeWgj2Q;
/**
* 2
*/
private String xeWgj2H;
/**
*
*/
private String xeZgqdQ;
/**
*
*/
private String xeZgqdH;
/**
*
*/
private String xeXzlQ;
/**
*
*/
private String xeXzlH;
/**
*
*/
private String xeWthjjQ;
/**
*
*/
private String xeWthhjH;
/**
* 1
*/
private String xeZppt1Q;
/**
* 1
*/
private String xeZppt1H;
/**
* 2
*/
private String xeZppt2Q;
/**
* 2
*/
private String xeZppt2H;
/**
* 3
*/
private String xeZppt3Q;
/**
* 3
*/
private String xeZppt3H;
/**
* 4
*/
private String xeZppt4Q;
/**
* 4
*/
private String xeZppt4H;
/**
* 5
*/
private String xeZppt5Q;
/**
* 5
*/
private String xeZppt5H;
/**
* 1
*/
private String xeHjgw1Q;
/**
* 1
*/
private String xeHjgw1H;
/**
* 2
*/
private String xeHjgw2Q;
/**
* 2
*/
private String xeHjgw2H;
/**
* 3
*/
private String xeHjgw3Q;
/**
* 3
*/
private String xeHjgw3H;
/**
* 4
*/
private String xeHjgw4Q;
/**
* 4
*/
private String xeHjgw4H;
/**
* 5
*/
private String xeHjgw5Q;
/**
* 5
*/
private String xeHjgw5H;
/**
*
*/
private String xeYcwjQ;
/**
*
*/
private String xeYcwjH;
/**
*
*/
private String xeSsQ;
/**
*
*/
private String jjgQ;
/**
*
*/
private String jjgH;
}

@ -0,0 +1,154 @@
package com.ipsplm.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* <p>
* 线
* </p>
*
* @author lulicheng
* @since 2024-07-30
*/
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("buffernum_xy")
public class BufferNumXy implements Serializable {
private static final long serialVersionUID = 1L;
/**
*
*/
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/**
*
*/
private Long flag;
/**
* 线线
*/
private String xyBufferL;
/**
*
*/
private String xyWgjQ;
/**
*
*/
private String xyWgjH;
/**
*
*/
private String xyZgqdQ;
/**
*
*/
private String xyZgqdH;
/**
* 1
*/
private String xyZppt1Q;
/**
* 1
*/
private String xyZppt1H;
/**
* 2
*/
private String xyZppt2Q;
/**
* 2
*/
private String xyZppt2H;
/**
* 3
*/
private String xyZppt3Q;
/**
* 3
*/
private String xyZppt3H;
/**
* 4
*/
private String xyZppt4Q;
/**
* 4
*/
private String xyZppt4H;
/**
* 1
*/
private String xyHjgw1Q;
/**
* 1
*/
private String xyHjgw1H;
/**
* 2
*/
private String xyHjgw2Q;
/**
* 2
*/
private String xyHjgw2H;
/**
* 3
*/
private String xyHjgw3Q;
/**
* 3
*/
private String xyHjgw3H;
/**
* 4
*/
private String xyHjgw4Q;
/**
* 4
*/
private String xyHjgw4H;
/**
*
*/
private String xyYcwjQ;
/**
*
*/
private String xyYcwjH;
/**
*
*/
private String xySsQ;
}

@ -0,0 +1,219 @@
package com.ipsplm.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* <p>
* 线
* </p>
*
* @author lulicheng
* @since 2024-07-30
*/
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("buffernum_ze")
public class BufferNumZe implements Serializable {
private static final long serialVersionUID = 1L;
/**
*
*/
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/**
*
*/
private Long flag;
/**
* 线线1
*/
private String zeBuffer1L;
/**
* 线线2
*/
private String zeBuffer2L;
/**
*
*/
private String zeWgjQ;
/**
*
*/
private String zeWgjH;
/**
*
*/
private String zeZgqdQ;
/**
*
*/
private String zeZgqdH;
/**
* 1
*/
private String zeXzl1Q;
/**
* 1
*/
private String zeXzl1H;
/**
* 2
*/
private String zeXzl2Q;
/**
* 2
*/
private String zeXzl2H;
/**
*
*/
private String zeWthjjQ;
/**
*
*/
private String zeWthhjH;
/**
* 1
*/
private String zeZppt1Q;
/**
* 1
*/
private String zeZppt1H;
/**
* 2
*/
private String zeZppt2Q;
/**
* 2
*/
private String zeZppt2H;
/**
* 3
*/
private String zeZppt3Q;
/**
* 3
*/
private String zeZppt3H;
/**
* 1
*/
private String zeHjgw1Q;
/**
* 1
*/
private String zeHjgw1H;
/**
* 2
*/
private String zeHjgw2Q;
/**
* 2
*/
private String zeHjgw2H;
/**
* 3
*/
private String zeHjgw3Q;
/**
* 3
*/
private String zeHjgw3H;
/**
* 4
*/
private String zeHjgw4Q;
/**
* 4
*/
private String zeHjgw4H;
/**
* 5
*/
private String zeHjgw5Q;
/**
* 5
*/
private String zeHjgw5H;
/**
* 6
*/
private String zeHjgw6Q;
/**
* 6
*/
private String zeHjgw6H;
/**
* 7
*/
private String zeHjgw7Q;
/**
* 7
*/
private String zeHjgw7H;
/**
*
*/
private String zeYcwjQ;
/**
*
*/
private String zeYcwjH;
/**
*
*/
private String zeSsQ;
/**
*
*/
private String tsQ;
/**
*
*/
private String tsH;
}

@ -0,0 +1,239 @@
package com.ipsplm.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* <p>
* 线
* </p>
*
* @author lulicheng
* @since 2024-07-30
*/
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("buffernum_zy")
public class BufferNumZy implements Serializable {
private static final long serialVersionUID = 1L;
/**
*
*/
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/**
*
*/
private Long flag;
/**
* 线线1
*/
private String zyBuffer1L;
/**
* 线线2
*/
private String zyBuffer2L;
/**
* 1
*/
private String zyWgj1Q;
/**
* 1
*/
private String zyWgj1H;
/**
* 2
*/
private String zyWgj2Q;
/**
* 2
*/
private String zyWgj2H;
/**
*
*/
private String zyZgqdQ;
/**
*
*/
private String zyZgqdH;
/**
*
*/
private String zyXzlQ;
/**
*
*/
private String zyXzlH;
/**
*
*/
private String zyWthjjQ;
/**
*
*/
private String zyWthhjH;
/**
* 1
*/
private String zyZppt1Q;
/**
* 1
*/
private String zyZppt1H;
/**
* 2
*/
private String zyZppt2Q;
/**
* 2
*/
private String zyZppt2H;
/**
* 3
*/
private String zyZppt3Q;
/**
* 3
*/
private String zyZppt3H;
/**
* 4
*/
private String zyZppt4Q;
/**
* 4
*/
private String zyZppt4H;
/**
* 5
*/
private String zyZppt5Q;
/**
* 5
*/
private String zyZppt5H;
/**
* 1
*/
private String zyHjgw1Q;
/**
* 1
*/
private String zyHjgw1H;
/**
* 2
*/
private String zyHjgw2Q;
/**
* 2
*/
private String zyHjgw2H;
/**
* 3
*/
private String zyHjgw3Q;
/**
* 3
*/
private String zyHjgw3H;
/**
* 4
*/
private String zyHjgw4Q;
/**
* 4
*/
private String zyHjgw4H;
/**
* 5
*/
private String zyHjgw5Q;
/**
* 5
*/
private String zyHjgw5H;
/**
* 6
*/
private String zyHjgw6Q;
/**
* 6
*/
private String zyHjgw6H;
/**
* 7
*/
private String zyHjgw7Q;
/**
* 7
*/
private String zyHjgw7H;
/**
*
*/
private String zyYcwjQ;
/**
*
*/
private String zyYcwjH;
/**
*
*/
private String zySsQ;
/**
*
*/
private String tsQ;
/**
*
*/
private String tsH;
}

@ -0,0 +1,109 @@
package com.ipsplm.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* <p>
* 线OEE
* </p>
*
* @author lulicheng
* @since 2024-07-30
*/
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("oee_bxg")
public class OeeBxg implements Serializable {
private static final long serialVersionUID = 1L;
/**
*
*/
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/**
*
*/
private Long flag;
/**
* 线
*/
private String bxgPkL;
/**
* 线
*/
private String bxgZpL;
/**
* 线
*/
private String bxgHjL;
/**
* 线
*/
private String bxgWgj;
/**
* 线
*/
private String bxgZgqd;
/**
* 线
*/
private String bxgXzl;
/**
* 线
*/
private String bxgWthj;
/**
* 线1
*/
private String bxgZppt1;
/**
* 线2
*/
private String bxgZppt2;
/**
* 线1
*/
private String bxgHjgw1;
/**
* 线2
*/
private String bxgHjgw2;
/**
* 线3
*/
private String bxgHjgw3;
/**
* 线
*/
private String bxgYcwj;
/**
* 线
*/
private String bxgSs;
/**
*
*/
private String ts;
}

@ -0,0 +1,124 @@
package com.ipsplm.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* <p>
* 线OEE
* </p>
*
* @author lulicheng
* @since 2024-07-30
*/
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("oee_dj")
public class OeeDj implements Serializable {
private static final long serialVersionUID = 1L;
/**
*
*/
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/**
*
*/
private Long flag;
/**
* 线线
*/
private String djJgqgL;
/**
* 线线
*/
private String djZpL;
/**
* 线线
*/
private String djHjL;
/**
* 线线
*/
private String djDghjL;
/**
* 线线
*/
private String djXzl;
/**
* 线线
*/
private String djWthjj;
/**
* 线
*/
private String djZgqd;
/**
* 线1
*/
private String djZppt1;
/**
* 线2
*/
private String djZppt2;
/**
* 线3
*/
private String djZppt3;
/**
* 线1
*/
private String djHjgw1;
/**
* 线2
*/
private String djHjgw2;
/**
* 线3
*/
private String djHjgw3;
/**
* 线4
*/
private String djHjgw4;
/**
* 线5
*/
private String djHjgw5;
/**
* 线6
*/
private String djHjgw6;
/**
* 线
*/
private String djYcwj;
/**
* 线
*/
private String djSs;
}

@ -0,0 +1,129 @@
package com.ipsplm.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* <p>
* 线OEE
* </p>
*
* @author lulicheng
* @since 2024-07-30
*/
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("oee_xe")
public class OeeXe implements Serializable {
private static final long serialVersionUID = 1L;
/**
*
*/
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/**
*
*/
private Long flag;
/**
* 线线
*/
private String xePkL;
/**
* 线线
*/
private String xeZpL;
/**
* 线线
*/
private String xeHjL;
/**
* 线1
*/
private String xeWgj1;
/**
* 线2
*/
private String xeWgj2;
/**
* 线
*/
private String xeZgqd;
/**
* 线1
*/
private String xeZppt1;
/**
* 线2
*/
private String xeZppt2;
/**
* 线3
*/
private String xeZppt3;
/**
* 线4
*/
private String xeZppt4;
/**
* 线5
*/
private String xeZppt5;
/**
* 线1
*/
private String xeHjgw1;
/**
* 线2
*/
private String xeHjgw2;
/**
* 线3
*/
private String xeHjgw3;
/**
* 线4
*/
private String xeHjgw4;
/**
* 线5
*/
private String xeHjgw5;
/**
* 线
*/
private String xeYcwj;
/**
* 线
*/
private String xeSs;
/**
*
*/
private String jjg;
}

@ -0,0 +1,114 @@
package com.ipsplm.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* <p>
* 线OEE
* </p>
*
* @author lulicheng
* @since 2024-07-30
*/
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("oee_xy")
public class OeeXy implements Serializable {
private static final long serialVersionUID = 1L;
/**
*
*/
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/**
*
*/
private Long flag;
/**
* 线线
*/
private String xyPkL;
/**
* 线线1
*/
private String xyZp1L;
/**
* 线线1
*/
private String xyHj1L;
/**
* 线线2
*/
private String xyHj2L;
/**
* 线
*/
private String xyWgj;
/**
* 线
*/
private String xyZgqd;
/**
* 线1
*/
private String xyZppt1;
/**
* 线2
*/
private String xyZppt2;
/**
* 线3
*/
private String xyZppt3;
/**
* 线4
*/
private String xyZppt4;
/**
* 线1
*/
private String xyHjgw1;
/**
* 线2
*/
private String xyHjgw2;
/**
* 线3
*/
private String xyHjgw3;
/**
* 线4
*/
private String xyHjgw4;
/**
* 线
*/
private String xyYcwj;
/**
* 线
*/
private String xySs;
}

@ -0,0 +1,149 @@
package com.ipsplm.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* <p>
* 线OEE
* </p>
*
* @author lulicheng
* @since 2024-07-30
*/
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("oee_ze")
public class OeeZe implements Serializable {
private static final long serialVersionUID = 1L;
/**
*
*/
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/**
*
*/
private Long flag;
/**
* 线线
*/
private String zeJgqgL;
/**
* 线线
*/
private String zeZpL;
/**
* 线线
*/
private String zeHjL;
/**
* 线线
*/
private String zeDghjL;
/**
* 线线
*/
private String zeWgj;
/**
* 线
*/
private String zeZgqd;
/**
* 线1
*/
private String zeXzl1;
/**
* 线2
*/
private String zeXzl2;
/**
* 线
*/
private String zeWthjj;
/**
* 线1
*/
private String zeZppt1;
/**
* 线2
*/
private String zeZppt2;
/**
* 线3
*/
private String zeZppt3;
/**
* 线4
*/
private String zeZppt4;
/**
* 线1
*/
private String zeHjgw1;
/**
* 线2
*/
private String zeHjgw2;
/**
* 线3
*/
private String zeHjgw3;
/**
* 线4
*/
private String zeHjgw4;
/**
* 线5
*/
private String zeHjgw5;
/**
* 线6
*/
private String zeHjgw6;
/**
* 线7
*/
private String zeHjgw7;
/**
* 线8
*/
private String zeHjgw8;
/**
* 线
*/
private String zeYcwj;
/**
* 线
*/
private String zeSs;
}

@ -0,0 +1,144 @@
package com.ipsplm.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* <p>
* 线OEE
* </p>
*
* @author lulicheng
* @since 2024-07-30
*/
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("oee_zy")
public class OeeZy implements Serializable {
private static final long serialVersionUID = 1L;
/**
*
*/
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/**
*
*/
private Long flag;
/**
* 线线
*/
private String zyPkL;
/**
* 线线
*/
private String zyZpL;
/**
* 线线
*/
private String zyHjL;
/**
* 线线
*/
private String zyDghjL;
/**
* 线1
*/
private String zyWgj1;
/**
* 线2
*/
private String zyWgj2;
/**
* 线
*/
private String zyXzl;
/**
* 线
*/
private String zyWthjj;
/**
* 线1
*/
private String zyZppt1;
/**
* 线2
*/
private String zyZppt2;
/**
* 线3
*/
private String zyZppt3;
/**
* 线4
*/
private String zyZppt4;
/**
* 线5
*/
private String zyZppt5;
/**
* 线1
*/
private String zyHjgw1;
/**
* 线2
*/
private String zyHjgw2;
/**
* 线3
*/
private String zyHjgw3;
/**
* 线4
*/
private String zyHjgw4;
/**
* 线5
*/
private String zyHjgw5;
/**
* 线6
*/
private String zyHjgw6;
/**
* 线7
*/
private String zyHjgw7;
/**
* 线
*/
private String zyYcwj;
/**
* 线
*/
private String zySs;
}

@ -0,0 +1,34 @@
package com.ipsplm.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* <p>
*
* </p>
*
* @author lulicheng
* @since 2024-07-30
*/
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("pts_message")
public class PstMessage implements Serializable {
private static final long serialVersionUID = 1L;
/**
*
*/
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/**
* 仿
*/
private String simtime;
}

@ -0,0 +1,27 @@
server:
port:
servlet:
context-path: /cosco-shipping-heavy
spring:
application:
name: cosco-shipping-heavy
datasource:
type: com.zaxxer.hikari.HikariDataSource
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://127.0.0.1:3306/zhongyuan?useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2B8&allowMultiQueries=true&autoReconnect=true&failOverReadOnly=false
username: root
password: 123456
hikari:
minimum-idle: 4
maximum-pool-size: 12
idle-timeout: 3600000
connection-test-query: SELECT 1
max-lifetime: 1800000
connection-timeout: 5000
pool-name: DatebookHikariC
#仿真Socket
plant:
socket:
ip:
port:
Loading…
Cancel
Save