This commit is contained in:
shuhongfan
2023-09-04 16:40:17 +08:00
commit cf5ac25c14
8267 changed files with 1305066 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
.idea
target/
*.iml

View File

@@ -0,0 +1,29 @@
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.sl-express</groupId>
<artifactId>sl-express-parent</artifactId>
<version>1.4</version>
</parent>
<groupId>com.sl-express.ms.transport-info</groupId>
<artifactId>sl-express-ms-transport-info-domain</artifactId>
<version>1.1-SNAPSHOT</version>
<description>运输信息微服务 - domain对象</description>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>com.github.xiaoymin</groupId>
<artifactId>knife4j-spring-boot-starter</artifactId>
</dependency>
</dependencies>
</project>

View File

@@ -0,0 +1,16 @@
package com.sl.transport.info.domain;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.util.List;
@Data
public class TransportInfoDTO {
@ApiModelProperty(value = "运单id", required = true)
private String transportOrderId;
@ApiModelProperty(value = "info信息列表", required = true)
private List<TransportInfoDetailDTO> infoList;
}

View File

@@ -0,0 +1,16 @@
package com.sl.transport.info.domain;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
public class TransportInfoDetailDTO {
@ApiModelProperty(value = "创建时间,时间戳", required = true)
private Long created;
@ApiModelProperty(value = "详细信息", example = "例如:您的快件已到达【北京通州分拣中心】", required = true)
private String info;
@ApiModelProperty(value = "状态,", example = "例如:运输中", required = true)
private String status;
}