4 changed files with 83 additions and 31 deletions
-
4Dockerfile
-
4docker-compose.yml
-
71pom.xml
-
19src/main/java/com/gaotao/modules/finishedProduct/vo/SoReceiveBoxesEntityVo.java
@ -1,7 +1,7 @@ |
|||
FROM java:8 |
|||
EXPOSE 8080 |
|||
EXPOSE 8004 |
|||
|
|||
VOLUME /tmp |
|||
ADD gaotao-fast.jar /app.jar |
|||
ADD target/rongxing-java.jar app.jar |
|||
RUN bash -c 'touch /app.jar' |
|||
ENTRYPOINT ["java","-jar","/app.jar"] |
|||
@ -1,8 +1,8 @@ |
|||
version: '2' |
|||
services: |
|||
gaotao-fast: |
|||
image: gaotao/fast |
|||
image: 116.62.65.118:2375/root/sxm |
|||
ports: |
|||
- "8080:8080" |
|||
- "8004:8004" |
|||
environment: |
|||
- spring.profiles.active=dev |
|||
@ -0,0 +1,19 @@ |
|||
package com.gaotao.modules.finishedProduct.vo; |
|||
|
|||
import com.gaotao.modules.finishedProduct.entity.SoReceiveBoxesEntity; |
|||
import lombok.Data; |
|||
|
|||
import java.util.Date; |
|||
|
|||
/** |
|||
* @CLASSNAME SoReceiveBoxesEntityVo |
|||
* @AUTHOR sxm |
|||
* @DESCRIPTION |
|||
* @DATE 2022/4/1 17:25 |
|||
* @VERSION 1.0 |
|||
**/ |
|||
@Data |
|||
public class SoReceiveBoxesEntityVo extends SoReceiveBoxesEntity { |
|||
private Date startDate; |
|||
private Date endDate; |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue