Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Y
yudao-cloud
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
hblj
yudao-cloud
Commits
394faf12
提交
394faf12
authored
4月 05, 2019
作者:
YunaiV
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
后端 + 前端:尝试引入 lombok ,解决和 mapstruct 集成的问题
上级
5c8828c2
显示空白字符变更
内嵌
并排
正在显示
12 个修改的文件
包含
116 行增加
和
237 行删除
+116
-237
pom.xml
promotion/promotion-application/pom.xml
+18
-1
AdminsBannerVO.java
.../mall/promotion/application/vo/admins/AdminsBannerVO.java
+4
-71
UsersBannerVO.java
...er/mall/promotion/application/vo/users/UsersBannerVO.java
+4
-18
BannerConvertImpl.java
...mall/promotion/application/convert/BannerConvertImpl.java
+3
-3
CouponTemplateConvertImpl.java
...motion/application/convert/CouponTemplateConvertImpl.java
+2
-2
ProductRecommendConvertImpl.java
...tion/application/convert/ProductRecommendConvertImpl.java
+2
-2
pom.xml
promotion/promotion-service-api/pom.xml
+50
-0
BannerBO.java
.../main/java/cn/iocoder/mall/promotion/api/bo/BannerBO.java
+5
-71
pom.xml
promotion/promotion-service-impl/pom.xml
+20
-2
BannerDO.java
...va/cn/iocoder/mall/promotion/biz/dataobject/BannerDO.java
+4
-63
CouponTemplateConvertImpl.java
...mall/promotion/biz/convert/CouponTemplateConvertImpl.java
+2
-2
ProductRecommendConvertImpl.java
...ll/promotion/biz/convert/ProductRecommendConvertImpl.java
+2
-2
没有找到文件。
promotion/promotion-application/pom.xml
浏览文件 @
394faf12
...
@@ -13,6 +13,7 @@
...
@@ -13,6 +13,7 @@
<properties>
<properties>
<org.mapstruct.version>
1.3.0.Final
</org.mapstruct.version>
<org.mapstruct.version>
1.3.0.Final
</org.mapstruct.version>
<org.projectlombok.version>
1.16.14
</org.projectlombok.version>
</properties>
</properties>
<dependencies>
<dependencies>
...
@@ -103,6 +104,17 @@
...
@@ -103,6 +104,17 @@
<artifactId>
mapstruct
</artifactId>
<!-- use mapstruct-jdk8 for Java 8 or higher -->
<artifactId>
mapstruct
</artifactId>
<!-- use mapstruct-jdk8 for Java 8 or higher -->
<version>
${org.mapstruct.version}
</version>
<version>
${org.mapstruct.version}
</version>
</dependency>
</dependency>
<dependency>
<groupId>
org.mapstruct
</groupId>
<artifactId>
mapstruct-jdk8
</artifactId>
<version>
${org.mapstruct.version}
</version>
</dependency>
<dependency>
<groupId>
org.projectlombok
</groupId>
<artifactId>
lombok
</artifactId>
<version>
${org.projectlombok.version}
</version>
</dependency>
</dependencies>
</dependencies>
...
@@ -112,7 +124,7 @@
...
@@ -112,7 +124,7 @@
<plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-compiler-plugin
</artifactId>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
3.
5.1
</version>
<version>
3.
8.0
</version>
<configuration>
<configuration>
<source>
1.8
</source>
<!-- or higher, depending on your project -->
<source>
1.8
</source>
<!-- or higher, depending on your project -->
<target>
1.8
</target>
<!-- or higher, depending on your project -->
<target>
1.8
</target>
<!-- or higher, depending on your project -->
...
@@ -122,6 +134,11 @@
...
@@ -122,6 +134,11 @@
<artifactId>
mapstruct-processor
</artifactId>
<artifactId>
mapstruct-processor
</artifactId>
<version>
${org.mapstruct.version}
</version>
<version>
${org.mapstruct.version}
</version>
</path>
</path>
<path>
<groupId>
org.projectlombok
</groupId>
<artifactId>
lombok
</artifactId>
<version>
${org.projectlombok.version}
</version>
</path>
</annotationProcessorPaths>
</annotationProcessorPaths>
</configuration>
</configuration>
</plugin>
</plugin>
...
...
promotion/promotion-application/src/main/java/cn/iocoder/mall/promotion/application/vo/admins/AdminsBannerVO.java
浏览文件 @
394faf12
...
@@ -2,10 +2,14 @@ package cn.iocoder.mall.promotion.application.vo.admins;
...
@@ -2,10 +2,14 @@ package cn.iocoder.mall.promotion.application.vo.admins;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.experimental.Accessors
;
import
java.util.Date
;
import
java.util.Date
;
@ApiModel
(
"Banner VO"
)
@ApiModel
(
"Banner VO"
)
@Data
@Accessors
(
chain
=
true
)
public
class
AdminsBannerVO
{
public
class
AdminsBannerVO
{
@ApiModelProperty
(
value
=
"Banner 编号"
,
required
=
true
,
example
=
"1"
)
@ApiModelProperty
(
value
=
"Banner 编号"
,
required
=
true
,
example
=
"1"
)
...
@@ -25,75 +29,4 @@ public class AdminsBannerVO {
...
@@ -25,75 +29,4 @@ public class AdminsBannerVO {
@ApiModelProperty
(
value
=
"创建时间"
,
required
=
true
,
example
=
"时间戳格式"
)
@ApiModelProperty
(
value
=
"创建时间"
,
required
=
true
,
example
=
"时间戳格式"
)
private
Date
createTime
;
private
Date
createTime
;
public
Integer
getId
()
{
return
id
;
}
public
AdminsBannerVO
setId
(
Integer
id
)
{
this
.
id
=
id
;
return
this
;
}
public
String
getTitle
()
{
return
title
;
}
public
AdminsBannerVO
setTitle
(
String
title
)
{
this
.
title
=
title
;
return
this
;
}
public
String
getUrl
()
{
return
url
;
}
public
AdminsBannerVO
setUrl
(
String
url
)
{
this
.
url
=
url
;
return
this
;
}
public
Integer
getSort
()
{
return
sort
;
}
public
AdminsBannerVO
setSort
(
Integer
sort
)
{
this
.
sort
=
sort
;
return
this
;
}
public
Integer
getStatus
()
{
return
status
;
}
public
AdminsBannerVO
setStatus
(
Integer
status
)
{
this
.
status
=
status
;
return
this
;
}
public
String
getMemo
()
{
return
memo
;
}
public
AdminsBannerVO
setMemo
(
String
memo
)
{
this
.
memo
=
memo
;
return
this
;
}
public
Date
getCreateTime
()
{
return
createTime
;
}
public
AdminsBannerVO
setCreateTime
(
Date
createTime
)
{
this
.
createTime
=
createTime
;
return
this
;
}
public
String
getPicUrl
()
{
return
picUrl
;
}
public
AdminsBannerVO
setPicUrl
(
String
picUrl
)
{
this
.
picUrl
=
picUrl
;
return
this
;
}
}
}
promotion/promotion-application/src/main/java/cn/iocoder/mall/promotion/application/vo/users/UsersBannerVO.java
浏览文件 @
394faf12
...
@@ -2,8 +2,12 @@ package cn.iocoder.mall.promotion.application.vo.users;
...
@@ -2,8 +2,12 @@ package cn.iocoder.mall.promotion.application.vo.users;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.experimental.Accessors
;
@ApiModel
(
"Banner VO"
)
@ApiModel
(
"Banner VO"
)
@Data
@Accessors
(
chain
=
true
)
public
class
UsersBannerVO
{
public
class
UsersBannerVO
{
@ApiModelProperty
(
value
=
"跳转链接"
,
required
=
true
,
example
=
"http://www.baidu.com"
)
@ApiModelProperty
(
value
=
"跳转链接"
,
required
=
true
,
example
=
"http://www.baidu.com"
)
...
@@ -11,22 +15,4 @@ public class UsersBannerVO {
...
@@ -11,22 +15,4 @@ public class UsersBannerVO {
@ApiModelProperty
(
value
=
"图片链接"
,
required
=
true
,
example
=
"http://www.iocoder.cn/01.jpg"
)
@ApiModelProperty
(
value
=
"图片链接"
,
required
=
true
,
example
=
"http://www.iocoder.cn/01.jpg"
)
private
String
picUrl
;
private
String
picUrl
;
public
String
getUrl
()
{
return
url
;
}
public
UsersBannerVO
setUrl
(
String
url
)
{
this
.
url
=
url
;
return
this
;
}
public
String
getPicUrl
()
{
return
picUrl
;
}
public
UsersBannerVO
setPicUrl
(
String
picUrl
)
{
this
.
picUrl
=
picUrl
;
return
this
;
}
}
}
promotion/promotion-application/target/generated-sources/annotations/cn/iocoder/mall/promotion/application/convert/BannerConvertImpl.java
浏览文件 @
394faf12
...
@@ -12,8 +12,8 @@ import javax.annotation.Generated;
...
@@ -12,8 +12,8 @@ import javax.annotation.Generated;
@Generated
(
@Generated
(
value
=
"org.mapstruct.ap.MappingProcessor"
,
value
=
"org.mapstruct.ap.MappingProcessor"
,
date
=
"2019-04-0
5T22:26:04
+0800"
,
date
=
"2019-04-0
6T01:40:13
+0800"
,
comments
=
"version: 1.3.0.Final, compiler: javac, environment: Java 1
1.0.
1 (Oracle Corporation)"
comments
=
"version: 1.3.0.Final, compiler: javac, environment: Java 1
.8.0_12
1 (Oracle Corporation)"
)
)
public
class
BannerConvertImpl
implements
BannerConvert
{
public
class
BannerConvertImpl
implements
BannerConvert
{
...
@@ -28,11 +28,11 @@ public class BannerConvertImpl implements BannerConvert {
...
@@ -28,11 +28,11 @@ public class BannerConvertImpl implements BannerConvert {
adminsBannerVO
.
setId
(
bannerBO
.
getId
()
);
adminsBannerVO
.
setId
(
bannerBO
.
getId
()
);
adminsBannerVO
.
setTitle
(
bannerBO
.
getTitle
()
);
adminsBannerVO
.
setTitle
(
bannerBO
.
getTitle
()
);
adminsBannerVO
.
setUrl
(
bannerBO
.
getUrl
()
);
adminsBannerVO
.
setUrl
(
bannerBO
.
getUrl
()
);
adminsBannerVO
.
setPicUrl
(
bannerBO
.
getPicUrl
()
);
adminsBannerVO
.
setSort
(
bannerBO
.
getSort
()
);
adminsBannerVO
.
setSort
(
bannerBO
.
getSort
()
);
adminsBannerVO
.
setStatus
(
bannerBO
.
getStatus
()
);
adminsBannerVO
.
setStatus
(
bannerBO
.
getStatus
()
);
adminsBannerVO
.
setMemo
(
bannerBO
.
getMemo
()
);
adminsBannerVO
.
setMemo
(
bannerBO
.
getMemo
()
);
adminsBannerVO
.
setCreateTime
(
bannerBO
.
getCreateTime
()
);
adminsBannerVO
.
setCreateTime
(
bannerBO
.
getCreateTime
()
);
adminsBannerVO
.
setPicUrl
(
bannerBO
.
getPicUrl
()
);
return
adminsBannerVO
;
return
adminsBannerVO
;
}
}
...
...
promotion/promotion-application/target/generated-sources/annotations/cn/iocoder/mall/promotion/application/convert/CouponTemplateConvertImpl.java
浏览文件 @
394faf12
...
@@ -11,8 +11,8 @@ import javax.annotation.Generated;
...
@@ -11,8 +11,8 @@ import javax.annotation.Generated;
@Generated
(
@Generated
(
value
=
"org.mapstruct.ap.MappingProcessor"
,
value
=
"org.mapstruct.ap.MappingProcessor"
,
date
=
"2019-04-0
5T22:26:04
+0800"
,
date
=
"2019-04-0
6T01:40:13
+0800"
,
comments
=
"version: 1.3.0.Final, compiler: javac, environment: Java 1
1.0.
1 (Oracle Corporation)"
comments
=
"version: 1.3.0.Final, compiler: javac, environment: Java 1
.8.0_12
1 (Oracle Corporation)"
)
)
public
class
CouponTemplateConvertImpl
implements
CouponTemplateConvert
{
public
class
CouponTemplateConvertImpl
implements
CouponTemplateConvert
{
...
...
promotion/promotion-application/target/generated-sources/annotations/cn/iocoder/mall/promotion/application/convert/ProductRecommendConvertImpl.java
浏览文件 @
394faf12
...
@@ -13,8 +13,8 @@ import javax.annotation.Generated;
...
@@ -13,8 +13,8 @@ import javax.annotation.Generated;
@Generated
(
@Generated
(
value
=
"org.mapstruct.ap.MappingProcessor"
,
value
=
"org.mapstruct.ap.MappingProcessor"
,
date
=
"2019-04-0
5T22:26:04
+0800"
,
date
=
"2019-04-0
6T01:40:13
+0800"
,
comments
=
"version: 1.3.0.Final, compiler: javac, environment: Java 1
1.0.
1 (Oracle Corporation)"
comments
=
"version: 1.3.0.Final, compiler: javac, environment: Java 1
.8.0_12
1 (Oracle Corporation)"
)
)
public
class
ProductRecommendConvertImpl
implements
ProductRecommendConvert
{
public
class
ProductRecommendConvertImpl
implements
ProductRecommendConvert
{
...
...
promotion/promotion-service-api/pom.xml
浏览文件 @
394faf12
...
@@ -11,6 +11,11 @@
...
@@ -11,6 +11,11 @@
<artifactId>
promotion-service-api
</artifactId>
<artifactId>
promotion-service-api
</artifactId>
<properties>
<org.mapstruct.version>
1.3.0.Final
</org.mapstruct.version>
<org.projectlombok.version>
1.16.14
</org.projectlombok.version>
</properties>
<dependencies>
<dependencies>
<dependency>
<dependency>
<groupId>
javax.validation
</groupId>
<groupId>
javax.validation
</groupId>
...
@@ -22,6 +27,51 @@
...
@@ -22,6 +27,51 @@
<version>
1.0-SNAPSHOT
</version>
<version>
1.0-SNAPSHOT
</version>
<scope>
compile
</scope>
<scope>
compile
</scope>
</dependency>
</dependency>
<dependency>
<groupId>
org.mapstruct
</groupId>
<artifactId>
mapstruct
</artifactId>
<!-- use mapstruct-jdk8 for Java 8 or higher -->
<version>
${org.mapstruct.version}
</version>
</dependency>
<dependency>
<groupId>
org.mapstruct
</groupId>
<artifactId>
mapstruct-jdk8
</artifactId>
<version>
${org.mapstruct.version}
</version>
</dependency>
<dependency>
<groupId>
org.projectlombok
</groupId>
<artifactId>
lombok
</artifactId>
<version>
${org.projectlombok.version}
</version>
</dependency>
</dependencies>
</dependencies>
<build>
<plugins>
<!-- 提供给 mapstruct 使用 -->
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
3.8.0
</version>
<configuration>
<source>
1.8
</source>
<!-- or higher, depending on your project -->
<target>
1.8
</target>
<!-- or higher, depending on your project -->
<annotationProcessorPaths>
<path>
<groupId>
org.mapstruct
</groupId>
<artifactId>
mapstruct-processor
</artifactId>
<version>
${org.mapstruct.version}
</version>
</path>
<path>
<groupId>
org.projectlombok
</groupId>
<artifactId>
lombok
</artifactId>
<version>
${org.projectlombok.version}
</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</build>
</project>
</project>
promotion/promotion-service-api/src/main/java/cn/iocoder/mall/promotion/api/bo/BannerBO.java
浏览文件 @
394faf12
package
cn
.
iocoder
.
mall
.
promotion
.
api
.
bo
;
package
cn
.
iocoder
.
mall
.
promotion
.
api
.
bo
;
import
lombok.Data
;
import
lombok.experimental.Accessors
;
import
java.util.Date
;
import
java.util.Date
;
/**
/**
* Banner BO
* Banner BO
*/
*/
@Data
@Accessors
(
chain
=
true
)
public
class
BannerBO
{
public
class
BannerBO
{
/**
/**
...
@@ -40,75 +45,4 @@ public class BannerBO {
...
@@ -40,75 +45,4 @@ public class BannerBO {
*/
*/
private
Date
createTime
;
private
Date
createTime
;
public
Integer
getId
()
{
return
id
;
}
public
BannerBO
setId
(
Integer
id
)
{
this
.
id
=
id
;
return
this
;
}
public
String
getTitle
()
{
return
title
;
}
public
BannerBO
setTitle
(
String
title
)
{
this
.
title
=
title
;
return
this
;
}
public
String
getUrl
()
{
return
url
;
}
public
BannerBO
setUrl
(
String
url
)
{
this
.
url
=
url
;
return
this
;
}
public
Integer
getSort
()
{
return
sort
;
}
public
BannerBO
setSort
(
Integer
sort
)
{
this
.
sort
=
sort
;
return
this
;
}
public
Integer
getStatus
()
{
return
status
;
}
public
BannerBO
setStatus
(
Integer
status
)
{
this
.
status
=
status
;
return
this
;
}
public
String
getMemo
()
{
return
memo
;
}
public
BannerBO
setMemo
(
String
memo
)
{
this
.
memo
=
memo
;
return
this
;
}
public
Date
getCreateTime
()
{
return
createTime
;
}
public
BannerBO
setCreateTime
(
Date
createTime
)
{
this
.
createTime
=
createTime
;
return
this
;
}
public
String
getPicUrl
()
{
return
picUrl
;
}
public
BannerBO
setPicUrl
(
String
picUrl
)
{
this
.
picUrl
=
picUrl
;
return
this
;
}
}
}
promotion/promotion-service-impl/pom.xml
浏览文件 @
394faf12
...
@@ -14,6 +14,7 @@
...
@@ -14,6 +14,7 @@
<properties>
<properties>
<org.mapstruct.version>
1.3.0.Final
</org.mapstruct.version>
<org.mapstruct.version>
1.3.0.Final
</org.mapstruct.version>
<org.projectlombok.version>
1.16.14
</org.projectlombok.version>
</properties>
</properties>
<dependencies>
<dependencies>
...
@@ -53,12 +54,24 @@
...
@@ -53,12 +54,24 @@
<artifactId>
mybatis-spring-boot-starter
</artifactId>
<artifactId>
mybatis-spring-boot-starter
</artifactId>
<version>
2.0.0
</version>
<version>
2.0.0
</version>
</dependency>
</dependency>
<dependency>
<groupId>
org.mapstruct
</groupId>
<artifactId>
mapstruct
</artifactId>
<!-- use mapstruct-jdk8 for Java 8 or higher -->
<version>
${org.mapstruct.version}
</version>
</dependency>
<dependency>
<dependency>
<groupId>
org.mapstruct
</groupId>
<groupId>
org.mapstruct
</groupId>
<artifactId>
mapstruct
</artifactId>
<artifactId>
mapstruct
-jdk8
</artifactId>
<version>
${org.mapstruct.version}
</version>
<version>
${org.mapstruct.version}
</version>
</dependency>
</dependency>
<dependency>
<groupId>
org.projectlombok
</groupId>
<artifactId>
lombok
</artifactId>
<version>
${org.projectlombok.version}
</version>
</dependency>
<dependency>
<dependency>
<groupId>
com.google.guava
</groupId>
<groupId>
com.google.guava
</groupId>
<artifactId>
guava
</artifactId>
<artifactId>
guava
</artifactId>
...
@@ -103,7 +116,7 @@
...
@@ -103,7 +116,7 @@
<plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-compiler-plugin
</artifactId>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
3.
5.1
</version>
<version>
3.
8.0
</version>
<configuration>
<configuration>
<source>
1.8
</source>
<!-- or higher, depending on your project -->
<source>
1.8
</source>
<!-- or higher, depending on your project -->
<target>
1.8
</target>
<!-- or higher, depending on your project -->
<target>
1.8
</target>
<!-- or higher, depending on your project -->
...
@@ -113,6 +126,11 @@
...
@@ -113,6 +126,11 @@
<artifactId>
mapstruct-processor
</artifactId>
<artifactId>
mapstruct-processor
</artifactId>
<version>
${org.mapstruct.version}
</version>
<version>
${org.mapstruct.version}
</version>
</path>
</path>
<path>
<groupId>
org.projectlombok
</groupId>
<artifactId>
lombok
</artifactId>
<version>
${org.projectlombok.version}
</version>
</path>
</annotationProcessorPaths>
</annotationProcessorPaths>
</configuration>
</configuration>
</plugin>
</plugin>
...
...
promotion/promotion-service-impl/src/main/java/cn/iocoder/mall/promotion/biz/dataobject/BannerDO.java
浏览文件 @
394faf12
package
cn
.
iocoder
.
mall
.
promotion
.
biz
.
dataobject
;
package
cn
.
iocoder
.
mall
.
promotion
.
biz
.
dataobject
;
import
cn.iocoder.common.framework.dataobject.DeletableDO
;
import
cn.iocoder.common.framework.dataobject.DeletableDO
;
import
lombok.Data
;
import
lombok.experimental.Accessors
;
/**
/**
* Banner 广告页
* Banner 广告页
*/
*/
@Data
@Accessors
(
chain
=
true
)
public
class
BannerDO
extends
DeletableDO
{
public
class
BannerDO
extends
DeletableDO
{
/**
/**
...
@@ -40,67 +44,4 @@ public class BannerDO extends DeletableDO {
...
@@ -40,67 +44,4 @@ public class BannerDO extends DeletableDO {
// TODO 芋艿 点击次数。&& 其他数据相关
// TODO 芋艿 点击次数。&& 其他数据相关
public
Integer
getId
()
{
return
id
;
}
public
BannerDO
setId
(
Integer
id
)
{
this
.
id
=
id
;
return
this
;
}
public
String
getTitle
()
{
return
title
;
}
public
BannerDO
setTitle
(
String
title
)
{
this
.
title
=
title
;
return
this
;
}
public
String
getUrl
()
{
return
url
;
}
public
BannerDO
setUrl
(
String
url
)
{
this
.
url
=
url
;
return
this
;
}
public
Integer
getStatus
()
{
return
status
;
}
public
BannerDO
setStatus
(
Integer
status
)
{
this
.
status
=
status
;
return
this
;
}
public
String
getMemo
()
{
return
memo
;
}
public
BannerDO
setMemo
(
String
memo
)
{
this
.
memo
=
memo
;
return
this
;
}
public
Integer
getSort
()
{
return
sort
;
}
public
BannerDO
setSort
(
Integer
sort
)
{
this
.
sort
=
sort
;
return
this
;
}
public
String
getPicUrl
()
{
return
picUrl
;
}
public
BannerDO
setPicUrl
(
String
picUrl
)
{
this
.
picUrl
=
picUrl
;
return
this
;
}
}
}
promotion/promotion-service-impl/target/generated-sources/annotations/cn/iocoder/mall/promotion/biz/convert/CouponTemplateConvertImpl.java
浏览文件 @
394faf12
...
@@ -12,8 +12,8 @@ import javax.annotation.Generated;
...
@@ -12,8 +12,8 @@ import javax.annotation.Generated;
@Generated
(
@Generated
(
value
=
"org.mapstruct.ap.MappingProcessor"
,
value
=
"org.mapstruct.ap.MappingProcessor"
,
date
=
"2019-04-06T0
0:20:10
+0800"
,
date
=
"2019-04-06T0
1:40:11
+0800"
,
comments
=
"version: 1.3.0.Final, compiler: javac, environment: Java 1
1.0.
1 (Oracle Corporation)"
comments
=
"version: 1.3.0.Final, compiler: javac, environment: Java 1
.8.0_12
1 (Oracle Corporation)"
)
)
public
class
CouponTemplateConvertImpl
implements
CouponTemplateConvert
{
public
class
CouponTemplateConvertImpl
implements
CouponTemplateConvert
{
...
...
promotion/promotion-service-impl/target/generated-sources/annotations/cn/iocoder/mall/promotion/biz/convert/ProductRecommendConvertImpl.java
浏览文件 @
394faf12
...
@@ -10,8 +10,8 @@ import javax.annotation.Generated;
...
@@ -10,8 +10,8 @@ import javax.annotation.Generated;
@Generated
(
@Generated
(
value
=
"org.mapstruct.ap.MappingProcessor"
,
value
=
"org.mapstruct.ap.MappingProcessor"
,
date
=
"2019-04-06T0
0:20:10
+0800"
,
date
=
"2019-04-06T0
1:40:11
+0800"
,
comments
=
"version: 1.3.0.Final, compiler: javac, environment: Java 1
1.0.
1 (Oracle Corporation)"
comments
=
"version: 1.3.0.Final, compiler: javac, environment: Java 1
.8.0_12
1 (Oracle Corporation)"
)
)
public
class
ProductRecommendConvertImpl
implements
ProductRecommendConvert
{
public
class
ProductRecommendConvertImpl
implements
ProductRecommendConvert
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论