mirror of
https://gitee.com/youlaitech/youlai-mall.git
synced 2024-12-22 12:48:59 +08:00
feat:广告、商品、用户模块发布配置
This commit is contained in:
parent
85155bc20c
commit
cba5db2fb0
@ -29,6 +29,7 @@ public class PmsSpu extends BaseEntity {
|
||||
private Long originPrice;
|
||||
private Long price;
|
||||
private Integer sales;
|
||||
private String picUrl;
|
||||
private String picUrls;
|
||||
private String unit;
|
||||
private String description;
|
||||
|
@ -14,6 +14,7 @@ public class SpuDTO {
|
||||
private Long originPrice;
|
||||
private Long price;
|
||||
private Integer sales;
|
||||
private String picUrl;
|
||||
private List<String> picUrls;
|
||||
private String unit;
|
||||
private String description;
|
||||
|
@ -12,6 +12,13 @@
|
||||
<artifactId>sms-api</artifactId>
|
||||
|
||||
<dependencies>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.youlai</groupId>
|
||||
<artifactId>common-knife4j</artifactId>
|
||||
<version>${youlai.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.baomidou</groupId>
|
||||
<artifactId>mybatis-plus-boot-starter</artifactId>
|
||||
|
@ -105,13 +105,13 @@
|
||||
<version>1.0.0</version>
|
||||
<executions>
|
||||
<!--执行mvn package,即执行 mvn clean package docker:build-->
|
||||
<!-- <execution>
|
||||
<execution>
|
||||
<id>build-image</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>build</goal>
|
||||
</goals>
|
||||
</execution>-->
|
||||
</execution>
|
||||
</executions>
|
||||
|
||||
<configuration>
|
||||
|
@ -19,7 +19,7 @@ public class Result<T> implements Serializable {
|
||||
|
||||
private String msg;
|
||||
|
||||
@JsonInclude(JsonInclude.Include.NON_DEFAULT)
|
||||
@JsonInclude(JsonInclude.Include.NON_NULL)
|
||||
private long total;
|
||||
|
||||
public static <T> Result<T> success() {
|
||||
|
Loading…
Reference in New Issue
Block a user