合并代码
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
spring:
|
||||
boot:
|
||||
admin:
|
||||
client:
|
||||
enabled: false # 暂时不用了
|
||||
url: http://127.0.0.1:18097
|
||||
|
||||
|
||||
#management:
|
||||
# endpoints:
|
||||
# web:
|
||||
# exposure:
|
||||
# include: "*"
|
||||
# server:
|
||||
# port: 19083 # 配置独立端口。而该端口,不使用 nginx 对外暴露,从而不配置安全认证。也就是说,内网环境可访问,外网环境不可访问。当然,这么做的前提是,认为内网安全。
|
||||
|
||||
swagger:
|
||||
enable: true # 暂时不去掉
|
||||
42
system/system-application/target/classes/application.yaml
Normal file
42
system/system-application/target/classes/application.yaml
Normal file
@@ -0,0 +1,42 @@
|
||||
spring:
|
||||
application:
|
||||
name: admin-application
|
||||
cloud:
|
||||
sentinel:
|
||||
transport:
|
||||
port: 8719
|
||||
dashboard: localhost:12088
|
||||
metric:
|
||||
charset: UTF-8
|
||||
eager: false
|
||||
|
||||
# server
|
||||
server:
|
||||
port: 18083
|
||||
servlet:
|
||||
context-path: /admin-api/
|
||||
|
||||
admins:
|
||||
security:
|
||||
ignore_urls: /admin-api/admins/passport/login, /admin-api/admins/file/get_qiniu_token
|
||||
|
||||
# qiniu
|
||||
qiniu:
|
||||
access-key: YldfyUC7OewoWM63TPYTairqnq8GMJvNek9EGoID
|
||||
secret-key: zZ7Q8wwZRyaklVvkyLmVydA4WygOBqtc_gTYzalS
|
||||
bucket: onemall
|
||||
|
||||
swagger:
|
||||
enable: true # 暂时不去掉
|
||||
title: 管理员子系统
|
||||
description: 管理员子系统
|
||||
version: 1.0.0
|
||||
base-package: cn.iocoder.mall.admin.application.controller
|
||||
|
||||
management:
|
||||
endpoints:
|
||||
web:
|
||||
exposure:
|
||||
include: health,info,env,metrics,prometheus
|
||||
metrics:
|
||||
enabled: true
|
||||
@@ -0,0 +1,155 @@
|
||||
package cn.iocoder.mall.admin.application.convert;
|
||||
|
||||
import cn.iocoder.common.framework.vo.CommonResult;
|
||||
import cn.iocoder.common.framework.vo.PageResult;
|
||||
import cn.iocoder.mall.admin.api.bo.admin.AdminBO;
|
||||
import cn.iocoder.mall.admin.api.bo.role.RoleBO;
|
||||
import cn.iocoder.mall.admin.application.vo.admin.AdminInfoVO;
|
||||
import cn.iocoder.mall.admin.application.vo.admin.AdminRoleVO;
|
||||
import cn.iocoder.mall.admin.application.vo.admin.AdminVO;
|
||||
import cn.iocoder.mall.admin.application.vo.admin.AdminVO.Role;
|
||||
import cn.iocoder.mall.admin.sdk.context.AdminSecurityContext;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collection;
|
||||
import java.util.HashSet;
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
import javax.annotation.Generated;
|
||||
|
||||
@Generated(
|
||||
value = "org.mapstruct.ap.MappingProcessor",
|
||||
date = "2019-05-31T18:11:49+0800",
|
||||
comments = "version: 1.3.0.Final, compiler: javac, environment: Java 1.8.0_121 (Oracle Corporation)"
|
||||
)
|
||||
public class AdminConvertImpl implements AdminConvert {
|
||||
|
||||
@Override
|
||||
public AdminInfoVO convert(AdminSecurityContext adminSecurityContext) {
|
||||
if ( adminSecurityContext == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
AdminInfoVO adminInfoVO = new AdminInfoVO();
|
||||
|
||||
adminInfoVO.setAdminId( adminSecurityContext.getAdminId() );
|
||||
Set<Integer> set = adminSecurityContext.getRoleIds();
|
||||
if ( set != null ) {
|
||||
adminInfoVO.setRoleIds( new HashSet<Integer>( set ) );
|
||||
}
|
||||
|
||||
return adminInfoVO;
|
||||
}
|
||||
|
||||
@Override
|
||||
public AdminVO convert(AdminBO adminBO) {
|
||||
if ( adminBO == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
AdminVO adminVO = new AdminVO();
|
||||
|
||||
adminVO.setId( adminBO.getId() );
|
||||
adminVO.setUsername( adminBO.getUsername() );
|
||||
adminVO.setNickname( adminBO.getNickname() );
|
||||
adminVO.setStatus( adminBO.getStatus() );
|
||||
adminVO.setCreateTime( adminBO.getCreateTime() );
|
||||
|
||||
return adminVO;
|
||||
}
|
||||
|
||||
@Override
|
||||
public CommonResult<AdminVO> convert2(CommonResult<AdminBO> result) {
|
||||
if ( result == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
CommonResult<AdminVO> commonResult = new CommonResult<AdminVO>();
|
||||
|
||||
commonResult.setCode( result.getCode() );
|
||||
commonResult.setMessage( result.getMessage() );
|
||||
commonResult.setData( convert( result.getData() ) );
|
||||
|
||||
return commonResult;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<AdminRoleVO> convert(List<RoleBO> roleList) {
|
||||
if ( roleList == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
List<AdminRoleVO> list = new ArrayList<AdminRoleVO>( roleList.size() );
|
||||
for ( RoleBO roleBO : roleList ) {
|
||||
list.add( roleBOToAdminRoleVO( roleBO ) );
|
||||
}
|
||||
|
||||
return list;
|
||||
}
|
||||
|
||||
@Override
|
||||
public PageResult<AdminVO> convertAdminVOPage(PageResult<AdminBO> page) {
|
||||
if ( page == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
PageResult<AdminVO> pageResult = new PageResult<AdminVO>();
|
||||
|
||||
pageResult.setList( adminBOListToAdminVOList( page.getList() ) );
|
||||
pageResult.setTotal( page.getTotal() );
|
||||
|
||||
return pageResult;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Role> convertAdminVORoleList(Collection<RoleBO> list) {
|
||||
if ( list == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
List<Role> list1 = new ArrayList<Role>( list.size() );
|
||||
for ( RoleBO roleBO : list ) {
|
||||
list1.add( roleBOToRole( roleBO ) );
|
||||
}
|
||||
|
||||
return list1;
|
||||
}
|
||||
|
||||
protected AdminRoleVO roleBOToAdminRoleVO(RoleBO roleBO) {
|
||||
if ( roleBO == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
AdminRoleVO adminRoleVO = new AdminRoleVO();
|
||||
|
||||
adminRoleVO.setId( roleBO.getId() );
|
||||
adminRoleVO.setName( roleBO.getName() );
|
||||
|
||||
return adminRoleVO;
|
||||
}
|
||||
|
||||
protected List<AdminVO> adminBOListToAdminVOList(List<AdminBO> list) {
|
||||
if ( list == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
List<AdminVO> list1 = new ArrayList<AdminVO>( list.size() );
|
||||
for ( AdminBO adminBO : list ) {
|
||||
list1.add( convert( adminBO ) );
|
||||
}
|
||||
|
||||
return list1;
|
||||
}
|
||||
|
||||
protected Role roleBOToRole(RoleBO roleBO) {
|
||||
if ( roleBO == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
Role role = new Role();
|
||||
|
||||
role.setId( roleBO.getId() );
|
||||
role.setName( roleBO.getName() );
|
||||
|
||||
return role;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
package cn.iocoder.mall.admin.application.convert;
|
||||
|
||||
import cn.iocoder.mall.admin.api.bo.datadict.DataDictBO;
|
||||
import cn.iocoder.mall.admin.application.vo.datadict.DataDictEnumVO.Value;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.annotation.Generated;
|
||||
|
||||
@Generated(
|
||||
value = "org.mapstruct.ap.MappingProcessor",
|
||||
date = "2019-05-31T18:11:48+0800",
|
||||
comments = "version: 1.3.0.Final, compiler: javac, environment: Java 1.8.0_121 (Oracle Corporation)"
|
||||
)
|
||||
public class DataDictConvertImpl implements DataDictConvert {
|
||||
|
||||
@Override
|
||||
public List<Value> convert2(List<DataDictBO> dataDictBOs) {
|
||||
if ( dataDictBOs == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
List<Value> list = new ArrayList<Value>( dataDictBOs.size() );
|
||||
for ( DataDictBO dataDictBO : dataDictBOs ) {
|
||||
list.add( dataDictBOToValue( dataDictBO ) );
|
||||
}
|
||||
|
||||
return list;
|
||||
}
|
||||
|
||||
protected Value dataDictBOToValue(DataDictBO dataDictBO) {
|
||||
if ( dataDictBO == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
Value value = new Value();
|
||||
|
||||
value.setValue( dataDictBO.getValue() );
|
||||
value.setDisplayName( dataDictBO.getDisplayName() );
|
||||
|
||||
return value;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
package cn.iocoder.mall.admin.application.convert;
|
||||
|
||||
import cn.iocoder.common.framework.vo.CommonResult;
|
||||
import cn.iocoder.mall.admin.api.bo.oauth2.OAuth2AccessTokenBO;
|
||||
import cn.iocoder.mall.admin.application.vo.PassportLoginVO;
|
||||
import javax.annotation.Generated;
|
||||
|
||||
@Generated(
|
||||
value = "org.mapstruct.ap.MappingProcessor",
|
||||
date = "2019-05-31T18:11:49+0800",
|
||||
comments = "version: 1.3.0.Final, compiler: javac, environment: Java 1.8.0_121 (Oracle Corporation)"
|
||||
)
|
||||
public class PassportConvertImpl implements PassportConvert {
|
||||
|
||||
@Override
|
||||
public PassportLoginVO convert(OAuth2AccessTokenBO oauth2AccessTokenBO) {
|
||||
if ( oauth2AccessTokenBO == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
PassportLoginVO passportLoginVO = new PassportLoginVO();
|
||||
|
||||
passportLoginVO.setAccessToken( oauth2AccessTokenBO.getAccessToken() );
|
||||
passportLoginVO.setRefreshToken( oauth2AccessTokenBO.getRefreshToken() );
|
||||
passportLoginVO.setExpiresIn( oauth2AccessTokenBO.getExpiresIn() );
|
||||
|
||||
return passportLoginVO;
|
||||
}
|
||||
|
||||
@Override
|
||||
public CommonResult<PassportLoginVO> convert(CommonResult<OAuth2AccessTokenBO> oauth2AccessTokenBO) {
|
||||
if ( oauth2AccessTokenBO == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
CommonResult<PassportLoginVO> commonResult = new CommonResult<PassportLoginVO>();
|
||||
|
||||
commonResult.setCode( oauth2AccessTokenBO.getCode() );
|
||||
commonResult.setMessage( oauth2AccessTokenBO.getMessage() );
|
||||
commonResult.setData( convert( oauth2AccessTokenBO.getData() ) );
|
||||
|
||||
return commonResult;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,111 @@
|
||||
package cn.iocoder.mall.admin.application.convert;
|
||||
|
||||
import cn.iocoder.common.framework.vo.CommonResult;
|
||||
import cn.iocoder.mall.admin.api.bo.resource.ResourceBO;
|
||||
import cn.iocoder.mall.admin.application.vo.admin.AdminMenuTreeNodeVO;
|
||||
import cn.iocoder.mall.admin.application.vo.resource.ResourceTreeNodeVO;
|
||||
import cn.iocoder.mall.admin.application.vo.resource.ResourceVO;
|
||||
import cn.iocoder.mall.admin.application.vo.role.RoleResourceTreeNodeVO;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.annotation.Generated;
|
||||
|
||||
@Generated(
|
||||
value = "org.mapstruct.ap.MappingProcessor",
|
||||
date = "2019-05-31T18:11:49+0800",
|
||||
comments = "version: 1.3.0.Final, compiler: javac, environment: Java 1.8.0_121 (Oracle Corporation)"
|
||||
)
|
||||
public class ResourceConvertImpl implements ResourceConvert {
|
||||
|
||||
@Override
|
||||
public AdminMenuTreeNodeVO convert(ResourceBO resourceBO) {
|
||||
if ( resourceBO == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
AdminMenuTreeNodeVO adminMenuTreeNodeVO = new AdminMenuTreeNodeVO();
|
||||
|
||||
adminMenuTreeNodeVO.setId( resourceBO.getId() );
|
||||
adminMenuTreeNodeVO.setHandler( resourceBO.getHandler() );
|
||||
adminMenuTreeNodeVO.setPid( resourceBO.getPid() );
|
||||
adminMenuTreeNodeVO.setSort( resourceBO.getSort() );
|
||||
adminMenuTreeNodeVO.setDisplayName( resourceBO.getDisplayName() );
|
||||
|
||||
return adminMenuTreeNodeVO;
|
||||
}
|
||||
|
||||
@Override
|
||||
public ResourceTreeNodeVO convert2(ResourceBO resourceBO) {
|
||||
if ( resourceBO == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
ResourceTreeNodeVO resourceTreeNodeVO = new ResourceTreeNodeVO();
|
||||
|
||||
resourceTreeNodeVO.setId( resourceBO.getId() );
|
||||
resourceTreeNodeVO.setType( resourceBO.getType() );
|
||||
resourceTreeNodeVO.setSort( resourceBO.getSort() );
|
||||
resourceTreeNodeVO.setDisplayName( resourceBO.getDisplayName() );
|
||||
resourceTreeNodeVO.setPid( resourceBO.getPid() );
|
||||
resourceTreeNodeVO.setHandler( resourceBO.getHandler() );
|
||||
resourceTreeNodeVO.setIcon( resourceBO.getIcon() );
|
||||
List<String> list = resourceBO.getPermissions();
|
||||
if ( list != null ) {
|
||||
resourceTreeNodeVO.setPermissions( new ArrayList<String>( list ) );
|
||||
}
|
||||
resourceTreeNodeVO.setCreateTime( resourceBO.getCreateTime() );
|
||||
|
||||
return resourceTreeNodeVO;
|
||||
}
|
||||
|
||||
@Override
|
||||
public RoleResourceTreeNodeVO convert4(ResourceBO resourceBO) {
|
||||
if ( resourceBO == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
RoleResourceTreeNodeVO roleResourceTreeNodeVO = new RoleResourceTreeNodeVO();
|
||||
|
||||
roleResourceTreeNodeVO.setId( resourceBO.getId() );
|
||||
roleResourceTreeNodeVO.setHandler( resourceBO.getHandler() );
|
||||
roleResourceTreeNodeVO.setPid( resourceBO.getPid() );
|
||||
roleResourceTreeNodeVO.setSort( resourceBO.getSort() );
|
||||
roleResourceTreeNodeVO.setDisplayName( resourceBO.getDisplayName() );
|
||||
|
||||
return roleResourceTreeNodeVO;
|
||||
}
|
||||
|
||||
@Override
|
||||
public ResourceVO convert3(ResourceBO resourceBO) {
|
||||
if ( resourceBO == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
ResourceVO resourceVO = new ResourceVO();
|
||||
|
||||
resourceVO.setId( resourceBO.getId() );
|
||||
resourceVO.setType( resourceBO.getType() );
|
||||
resourceVO.setSort( resourceBO.getSort() );
|
||||
resourceVO.setDisplayName( resourceBO.getDisplayName() );
|
||||
resourceVO.setCreateTime( resourceBO.getCreateTime() );
|
||||
resourceVO.setPid( resourceBO.getPid() );
|
||||
resourceVO.setHandler( resourceBO.getHandler() );
|
||||
|
||||
return resourceVO;
|
||||
}
|
||||
|
||||
@Override
|
||||
public CommonResult<ResourceVO> convert3(CommonResult<ResourceBO> resourceBO) {
|
||||
if ( resourceBO == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
CommonResult<ResourceVO> commonResult = new CommonResult<ResourceVO>();
|
||||
|
||||
commonResult.setCode( resourceBO.getCode() );
|
||||
commonResult.setMessage( resourceBO.getMessage() );
|
||||
commonResult.setData( convert3( resourceBO.getData() ) );
|
||||
|
||||
return commonResult;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package cn.iocoder.mall.admin.application.convert;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
@Generated(
|
||||
value = "org.mapstruct.ap.MappingProcessor",
|
||||
date = "2019-05-31T18:11:49+0800",
|
||||
comments = "version: 1.3.0.Final, compiler: javac, environment: Java 1.8.0_121 (Oracle Corporation)"
|
||||
)
|
||||
public class RoleConvertImpl implements RoleConvert {
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
spring:
|
||||
# datasource
|
||||
datasource:
|
||||
url: jdbc:mysql://192.168.88.14:3306/mall_admin?useSSL=false&useUnicode=true&characterEncoding=UTF-8
|
||||
driver-class-name: com.mysql.jdbc.Driver
|
||||
username: root
|
||||
password: ${MALL_MYSQL_PASSWORD}
|
||||
@@ -0,0 +1,4 @@
|
||||
##################### 业务模块 #####################
|
||||
## OAuth2CodeService
|
||||
modules.oauth2-code-service.access-token-expire-time-millis = 2880000
|
||||
modules.oauth2-code-service.refresh-token-expire-time-millis = 43200000
|
||||
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="cn.iocoder.mall.admin.dao.AdminRoleMapper">
|
||||
|
||||
<insert id="insertList">
|
||||
INSERT INTO admin_role (
|
||||
admin_id, role_id, create_time, deleted
|
||||
) VALUES
|
||||
<foreach collection="adminRoleDOs" item="adminRole" separator=",">
|
||||
(#{adminRole.adminId}, #{adminRole.roleId}, #{adminRole.createTime}, #{adminRole.deleted})
|
||||
</foreach>
|
||||
</insert>
|
||||
|
||||
</mapper>
|
||||
@@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="cn.iocoder.mall.admin.dao.DataDictMapper">
|
||||
|
||||
<sql id="FIELDS">
|
||||
id, enum_value, value, display_name, sort,
|
||||
memo, create_time
|
||||
</sql>
|
||||
|
||||
<select id="selectByEnumValueAndValue" resultType="DataDictDO">
|
||||
SELECT
|
||||
<include refid="FIELDS"/>
|
||||
FROM data_dict
|
||||
WHERE enum_value = #{enumValue}
|
||||
AND value = #{value}
|
||||
AND deleted = 0
|
||||
LIMIT 1
|
||||
</select>
|
||||
|
||||
<select id="selectByEnumValueAndValues" resultType="cn.iocoder.mall.admin.dataobject.DataDictDO">
|
||||
SELECT
|
||||
<include refid="FIELDS"/>
|
||||
FROM data_dict
|
||||
WHERE deleted = 0
|
||||
AND enum_value = #{enumValue}
|
||||
AND `value` IN
|
||||
<foreach collection="values" item="value" separator="," open="(" close=")">
|
||||
#{value}
|
||||
</foreach>
|
||||
</select>
|
||||
|
||||
<select id="selectByEnumValue" resultType="cn.iocoder.mall.admin.dataobject.DataDictDO">
|
||||
SELECT
|
||||
<include refid="FIELDS"/>
|
||||
FROM data_dict
|
||||
WHERE deleted = 0
|
||||
AND enum_value = #{enumValue}
|
||||
</select>
|
||||
|
||||
</mapper>
|
||||
@@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="cn.iocoder.mall.admin.dao.ResourceMapper">
|
||||
|
||||
<sql id="FIELDS">
|
||||
id, type, sort, display_name, icon, permissions,
|
||||
create_time, pid, handler
|
||||
</sql>
|
||||
|
||||
<select id="selectListByTypeAndRoleIds" resultType="ResourceDO">
|
||||
SELECT
|
||||
r.id, r.type, r.sort, r.display_name,
|
||||
r.create_time, r.pid, r.handler
|
||||
FROM resource r, role_resource rr
|
||||
WHERE r.deleted = 0
|
||||
AND rr.deleted = 0
|
||||
<if test="type != null">
|
||||
AND r.type = #{type}
|
||||
</if>
|
||||
AND rr.role_id IN
|
||||
<foreach item="roleId" collection="roleIds" separator="," open="(" close=")" index="">
|
||||
#{roleId}
|
||||
</foreach>
|
||||
AND r.id = rr.resource_id
|
||||
</select>
|
||||
|
||||
</mapper>
|
||||
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="cn.iocoder.mall.admin.dao.RoleResourceMapper">
|
||||
|
||||
<insert id="insertList">
|
||||
INSERT INTO role_resource (
|
||||
resource_id, role_id, create_time, deleted
|
||||
) VALUES
|
||||
<foreach collection="roleResources" item="roleResource" separator=",">
|
||||
(#{roleResource.resourceId}, #{roleResource.roleId}, #{roleResource.createTime}, #{roleResource.deleted})
|
||||
</foreach>
|
||||
</insert>
|
||||
|
||||
</mapper>
|
||||
@@ -8,7 +8,7 @@ import javax.annotation.Generated;
|
||||
|
||||
@Generated(
|
||||
value = "org.mapstruct.ap.MappingProcessor",
|
||||
date = "2019-05-31T17:43:56+0800",
|
||||
date = "2019-05-31T18:10:14+0800",
|
||||
comments = "version: 1.3.0.Final, compiler: javac, environment: Java 1.8.0_121 (Oracle Corporation)"
|
||||
)
|
||||
public class AccessLogConvertImpl implements AccessLogConvert {
|
||||
|
||||
@@ -13,7 +13,7 @@ import javax.annotation.Generated;
|
||||
|
||||
@Generated(
|
||||
value = "org.mapstruct.ap.MappingProcessor",
|
||||
date = "2019-05-31T17:43:55+0800",
|
||||
date = "2019-05-31T18:10:13+0800",
|
||||
comments = "version: 1.3.0.Final, compiler: javac, environment: Java 1.8.0_121 (Oracle Corporation)"
|
||||
)
|
||||
public class AdminConvertImpl implements AdminConvert {
|
||||
|
||||
@@ -10,7 +10,7 @@ import javax.annotation.Generated;
|
||||
|
||||
@Generated(
|
||||
value = "org.mapstruct.ap.MappingProcessor",
|
||||
date = "2019-05-31T17:43:56+0800",
|
||||
date = "2019-05-31T18:10:13+0800",
|
||||
comments = "version: 1.3.0.Final, compiler: javac, environment: Java 1.8.0_121 (Oracle Corporation)"
|
||||
)
|
||||
public class DataDictConvertImpl implements DataDictConvert {
|
||||
|
||||
@@ -7,7 +7,7 @@ import javax.annotation.Generated;
|
||||
|
||||
@Generated(
|
||||
value = "org.mapstruct.ap.MappingProcessor",
|
||||
date = "2019-05-31T17:43:56+0800",
|
||||
date = "2019-05-31T18:10:14+0800",
|
||||
comments = "version: 1.3.0.Final, compiler: javac, environment: Java 1.8.0_121 (Oracle Corporation)"
|
||||
)
|
||||
public class OAuth2ConvertImpl implements OAuth2Convert {
|
||||
|
||||
@@ -10,7 +10,7 @@ import javax.annotation.Generated;
|
||||
|
||||
@Generated(
|
||||
value = "org.mapstruct.ap.MappingProcessor",
|
||||
date = "2019-05-31T17:43:56+0800",
|
||||
date = "2019-05-31T18:10:13+0800",
|
||||
comments = "version: 1.3.0.Final, compiler: javac, environment: Java 1.8.0_121 (Oracle Corporation)"
|
||||
)
|
||||
public class ResourceConvertImpl implements ResourceConvert {
|
||||
|
||||
@@ -12,7 +12,7 @@ import javax.annotation.Generated;
|
||||
|
||||
@Generated(
|
||||
value = "org.mapstruct.ap.MappingProcessor",
|
||||
date = "2019-05-31T17:43:56+0800",
|
||||
date = "2019-05-31T18:10:13+0800",
|
||||
comments = "version: 1.3.0.Final, compiler: javac, environment: Java 1.8.0_121 (Oracle Corporation)"
|
||||
)
|
||||
public class RoleConvertImpl implements RoleConvert {
|
||||
|
||||
@@ -9,7 +9,7 @@ import javax.annotation.Generated;
|
||||
|
||||
@Generated(
|
||||
value = "org.mapstruct.ap.MappingProcessor",
|
||||
date = "2019-05-31T17:43:56+0800",
|
||||
date = "2019-05-31T18:10:13+0800",
|
||||
comments = "version: 1.3.0.Final, compiler: javac, environment: Java 1.8.0_121 (Oracle Corporation)"
|
||||
)
|
||||
public class SmsSignConvertImpl implements SmsSignConvert {
|
||||
|
||||
@@ -11,7 +11,7 @@ import javax.annotation.Generated;
|
||||
|
||||
@Generated(
|
||||
value = "org.mapstruct.ap.MappingProcessor",
|
||||
date = "2019-05-31T17:43:56+0800",
|
||||
date = "2019-05-31T18:10:13+0800",
|
||||
comments = "version: 1.3.0.Final, compiler: javac, environment: Java 1.8.0_121 (Oracle Corporation)"
|
||||
)
|
||||
public class SmsTemplateConvertImpl implements SmsTemplateConvert {
|
||||
|
||||
Reference in New Issue
Block a user