Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wecloud_im_server
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hewei
wecloud_im_server
Commits
3a55ac46
Commit
3a55ac46
authored
Oct 16, 2020
by
hewei
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'future/strokeList' into 'master'
Future/stroke list See merge request hewei/Jumeirah!27
parents
0b77f538
2f53483d
Hide whitespace changes
Inline
Side-by-side
Showing
27 changed files
with
297 additions
and
131 deletions
+297
-131
api-merchant/src/main/java/com/jumeirah/api/merchant/controller/MerchantHelloWorldController.java
+3
-3
api-merchant/src/main/java/com/jumeirah/api/merchant/controller/MerchantPermissionController.java
+1
-1
api-merchant/src/main/java/com/jumeirah/api/merchant/controller/MerchantRegisterController.java
+0
-62
api-merchant/src/main/java/com/jumeirah/api/merchant/controller/MerchantRoleController.java
+1
-1
api-merchant/src/main/java/com/jumeirah/api/merchant/controller/MerchantRolePermissionController.java
+1
-1
api-merchant/src/main/java/com/jumeirah/api/merchant/controller/MerchantSmsController.java
+2
-2
api-merchant/src/main/java/com/jumeirah/api/merchant/controller/MerchantUserController.java
+28
-25
api-system/src/main/java/com/jumeirah/api/system/controller/MerchantForSysController.java
+1
-1
common/src/main/java/com/jumeirah/common/convert/UserConvert.java
+2
-2
common/src/main/java/com/jumeirah/common/entity/Merchant.java
+20
-5
common/src/main/java/com/jumeirah/common/mapper/MerchantMapper.java
+1
-1
common/src/main/java/com/jumeirah/common/param/MerLoginParam.java
+48
-0
common/src/main/java/com/jumeirah/common/param/MerchantPageParam.java
+3
-3
common/src/main/java/com/jumeirah/common/param/MerchantRegisterParam.java
+65
-0
common/src/main/java/com/jumeirah/common/service/MerchantService.java
+1
-1
common/src/main/java/com/jumeirah/common/service/MerchantUserService.java
+6
-2
common/src/main/java/com/jumeirah/common/service/impl/MerchantServiceImpl.java
+1
-1
common/src/main/java/com/jumeirah/common/service/impl/MerchantSmsService.java
+1
-1
common/src/main/java/com/jumeirah/common/service/impl/MerchantSmsServiceImpl.java
+1
-1
common/src/main/java/com/jumeirah/common/service/impl/MerchantUserServiceImpl.java
+47
-5
common/src/main/java/com/jumeirah/common/service/impl/SysLoginServiceImpl.java
+2
-2
common/src/main/java/com/jumeirah/common/vo/LoginMerUserTokenVo.java
+44
-0
common/src/main/resources/mapper/BusinessPlainMapper.xml
+1
-0
common/src/main/resources/mapper/CharterIntroductionMapper.xml
+3
-0
common/src/main/resources/mapper/MerchantMapper.xml
+4
-1
config/src/main/resources/config/application-test.yml
+5
-5
config/src/main/resources/config/application.yml
+5
-5
No files found.
api-merchant/src/main/java/com/jumeirah/api/merchant/controller/MerchantHelloWorldController.java
View file @
3a55ac46
...
...
@@ -19,7 +19,7 @@ import java.io.IOException;
@Slf4j
@Api
(
value
=
"Hello World2"
,
tags
=
{
"商户Hello World2"
})
@RestController
@RequestMapping
(
"/merchant/"
)
@RequestMapping
(
"/merchant/
hello
"
)
public
class
MerchantHelloWorldController
{
@GetMapping
(
value
=
"/world"
)
...
...
@@ -41,7 +41,7 @@ public class MerchantHelloWorldController {
@GetMapping
(
value
=
"/needRoleAdmin"
)
@OperationLog
(
name
=
"needRoleAdmin"
)
@ApiOperation
(
value
=
"needRoleAdmin"
,
response
=
String
.
class
)
@RequiresPermissions
(
"mer:admin"
)
@RequiresPermissions
(
"mer
chant
:admin"
)
public
ApiResult
<
String
>
needRoleAdmin
()
throws
IOException
{
log
.
debug
(
"Hello World...app"
);
return
ApiResult
.
ok
(
"Hello World needRoleAdmin"
);
...
...
@@ -50,7 +50,7 @@ public class MerchantHelloWorldController {
@GetMapping
(
value
=
"/needRoleAll"
)
@OperationLog
(
name
=
"needRoleAll"
)
@ApiOperation
(
value
=
"needRoleAll"
,
response
=
String
.
class
)
@RequiresRoles
(
"
app
:all"
)
@RequiresRoles
(
"
merchant
:all"
)
public
ApiResult
<
String
>
needRoleAll
()
throws
IOException
{
log
.
debug
(
"Hello World...app"
);
return
ApiResult
.
ok
(
"Hello World needRoleAll"
);
...
...
api-merchant/src/main/java/com/jumeirah/api/merchant/controller/MerchantPermissionController.java
View file @
3a55ac46
...
...
@@ -32,7 +32,7 @@ import org.springframework.web.bind.annotation.RestController;
*/
@Slf4j
@RestController
@RequestMapping
(
"/merchant
P
ermission"
)
@RequestMapping
(
"/merchant
/p
ermission"
)
@Module
(
"${cfg.module}"
)
@Api
(
value
=
"商家权限API"
,
tags
=
{
"商家权限"
})
public
class
MerchantPermissionController
extends
BaseController
{
...
...
api-merchant/src/main/java/com/jumeirah/api/merchant/controller/MerchantRegisterController.java
deleted
100755 → 0
View file @
0b77f538
/*
* Copyright 2019-2029 geekidea(https://github.com/geekidea)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
com
.
jumeirah
.
api
.
merchant
.
controller
;
import
com.jumeirah.common.param.RegisterParam
;
import
com.jumeirah.common.service.SysRegisterService
;
import
com.jumeirah.common.vo.LoginSysUserTokenVo
;
import
io.geekidea.springbootplus.framework.common.api.ApiResult
;
import
io.geekidea.springbootplus.framework.log.annotation.Module
;
import
io.geekidea.springbootplus.framework.log.annotation.OperationLogIgnore
;
import
io.swagger.annotations.Api
;
import
io.swagger.annotations.ApiOperation
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.validation.annotation.Validated
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.RequestBody
;
import
org.springframework.web.bind.annotation.RequestHeader
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
import
javax.servlet.http.HttpServletResponse
;
/**
* 注册控制器
*
* @author geekidea
* @date 2019-09-28
* @since 1.3.0.RELEASE
**/
@Slf4j
@RestController
@Module
(
"system"
)
@Api
(
value
=
"商户注册API"
,
tags
=
{
"商户注册"
})
@RequestMapping
(
"/merchant/"
)
public
class
MerchantRegisterController
{
@Autowired
private
SysRegisterService
registerService
;
@PostMapping
(
"/register"
)
@OperationLogIgnore
@ApiOperation
(
value
=
"注册"
,
notes
=
"商户注册"
,
response
=
LoginSysUserTokenVo
.
class
)
public
ApiResult
<
LoginSysUserTokenVo
>
register
(
@Validated
@RequestBody
RegisterParam
registerParam
,
HttpServletResponse
response
,
@RequestHeader
(
required
=
false
)
String
language
)
throws
Exception
{
return
registerService
.
register
(
registerParam
,
response
,
language
);
}
}
api-merchant/src/main/java/com/jumeirah/api/merchant/controller/MerchantRoleController.java
View file @
3a55ac46
...
...
@@ -32,7 +32,7 @@ import org.springframework.web.bind.annotation.RestController;
*/
@Slf4j
@RestController
@RequestMapping
(
"/merchant
R
ole"
)
@RequestMapping
(
"/merchant
/r
ole"
)
@Module
(
"${cfg.module}"
)
@Api
(
value
=
"商家角色API"
,
tags
=
{
"商家角色"
})
public
class
MerchantRoleController
extends
BaseController
{
...
...
api-merchant/src/main/java/com/jumeirah/api/merchant/controller/MerchantRolePermissionController.java
View file @
3a55ac46
...
...
@@ -32,7 +32,7 @@ import org.springframework.web.bind.annotation.RestController;
*/
@Slf4j
@RestController
@RequestMapping
(
"/merchant
R
olePermission"
)
@RequestMapping
(
"/merchant
/r
olePermission"
)
@Module
(
"${cfg.module}"
)
@Api
(
value
=
"商家角色权限关系API"
,
tags
=
{
"商家角色权限关系"
})
public
class
MerchantRolePermissionController
extends
BaseController
{
...
...
api-merchant/src/main/java/com/jumeirah/api/merchant/controller/MerchantSmsController.java
View file @
3a55ac46
package
com
.
jumeirah
.
api
.
merchant
.
controller
;
import
com.jumeirah.
api.merchant.service
.MerchantSmsService
;
import
com.jumeirah.
common.service.impl
.MerchantSmsService
;
import
io.geekidea.springbootplus.framework.common.api.ApiResult
;
import
io.geekidea.springbootplus.framework.common.controller.BaseController
;
import
io.geekidea.springbootplus.framework.log.annotation.OperationLog
;
...
...
@@ -24,7 +24,7 @@ import org.springframework.web.bind.annotation.RestController;
@RestController
//@Module("api-app")
@Api
(
value
=
"短信验证码"
,
tags
=
{
"APP短信验证码相关"
})
@RequestMapping
(
"/
app
/sms/"
)
@RequestMapping
(
"/
merchant
/sms/"
)
public
class
MerchantSmsController
extends
BaseController
{
@Autowired
...
...
api-merchant/src/main/java/com/jumeirah/api/merchant/controller/MerchantUserController.java
View file @
3a55ac46
...
...
@@ -2,9 +2,11 @@ package com.jumeirah.api.merchant.controller;
import
com.jumeirah.common.entity.MerchantUser
;
import
com.jumeirah.common.param.LoginParam
;
import
com.jumeirah.common.param.MerchantRegisterParam
;
import
com.jumeirah.common.param.MerchantUserPageParam
;
import
com.jumeirah.common.service.MerchantService
;
import
com.jumeirah.common.service.MerchantUserService
;
import
com.jumeirah.common.vo.Login
Sys
UserTokenVo
;
import
com.jumeirah.common.vo.Login
Mer
UserTokenVo
;
import
com.jumeirah.common.vo.MerchantUserQueryVo
;
import
io.geekidea.springbootplus.framework.common.api.ApiResult
;
import
io.geekidea.springbootplus.framework.common.controller.BaseController
;
...
...
@@ -31,71 +33,73 @@ import org.springframework.web.bind.annotation.RestController;
import
javax.servlet.http.HttpServletResponse
;
/**
* 商家 控制器
* 商家
用户
控制器
*
* @author wei
* @since 2020-09-27
*/
@Slf4j
@RestController
@RequestMapping
(
"/merchant
U
ser"
)
@RequestMapping
(
"/merchant
/u
ser"
)
@Module
(
"${cfg.module}"
)
@Api
(
value
=
"商家
API"
,
tags
=
{
"商家
"
})
@Api
(
value
=
"商家
用户API"
,
tags
=
{
"商家用户表
"
})
public
class
MerchantUserController
extends
BaseController
{
@Autowired
private
MerchantUserService
merchantUserService
;
@Autowired
private
MerchantService
merchantService
;
/**
* 添加商家
* 添加商家
用户
*/
@PostMapping
(
"/add"
)
@OperationLog
(
name
=
"添加商家"
,
type
=
OperationLogType
.
ADD
)
@ApiOperation
(
value
=
"添加商家"
,
response
=
ApiResult
.
class
)
@OperationLog
(
name
=
"添加商家
用户
"
,
type
=
OperationLogType
.
ADD
)
@ApiOperation
(
value
=
"添加商家
用户
"
,
response
=
ApiResult
.
class
)
public
ApiResult
<
Boolean
>
addMerchantUser
(
@Validated
(
Add
.
class
)
@RequestBody
MerchantUser
merchantUser
)
throws
Exception
{
boolean
flag
=
merchantUserService
.
saveMerchantUser
(
merchantUser
);
return
ApiResult
.
result
(
flag
);
}
/**
* 修改商家
* 修改商家
用户
*/
@PostMapping
(
"/update"
)
@OperationLog
(
name
=
"修改商家"
,
type
=
OperationLogType
.
UPDATE
)
@ApiOperation
(
value
=
"修改商家"
,
response
=
ApiResult
.
class
)
@OperationLog
(
name
=
"修改商家
用户
"
,
type
=
OperationLogType
.
UPDATE
)
@ApiOperation
(
value
=
"修改商家
用户
"
,
response
=
ApiResult
.
class
)
public
ApiResult
<
Boolean
>
updateMerchantUser
(
@Validated
(
Update
.
class
)
@RequestBody
MerchantUser
merchantUser
)
throws
Exception
{
boolean
flag
=
merchantUserService
.
updateMerchantUser
(
merchantUser
);
return
ApiResult
.
result
(
flag
);
}
/**
* 删除商家
* 删除商家
用户
*/
@PostMapping
(
"/delete/{id}"
)
@OperationLog
(
name
=
"删除商家"
,
type
=
OperationLogType
.
DELETE
)
@ApiOperation
(
value
=
"删除商家"
,
response
=
ApiResult
.
class
)
@OperationLog
(
name
=
"删除商家
用户
"
,
type
=
OperationLogType
.
DELETE
)
@ApiOperation
(
value
=
"删除商家
用户
"
,
response
=
ApiResult
.
class
)
public
ApiResult
<
Boolean
>
deleteMerchantUser
(
@PathVariable
(
"id"
)
Long
id
)
throws
Exception
{
boolean
flag
=
merchantUserService
.
deleteMerchantUser
(
id
);
return
ApiResult
.
result
(
flag
);
}
/**
* 获取商家详情
* 获取商家
用户
详情
*/
@GetMapping
(
"/info/{id}"
)
@OperationLog
(
name
=
"商家详情"
,
type
=
OperationLogType
.
INFO
)
@ApiOperation
(
value
=
"商家详情"
,
response
=
MerchantUserQueryVo
.
class
)
@OperationLog
(
name
=
"商家
用户
详情"
,
type
=
OperationLogType
.
INFO
)
@ApiOperation
(
value
=
"商家
用户
详情"
,
response
=
MerchantUserQueryVo
.
class
)
public
ApiResult
<
MerchantUserQueryVo
>
getMerchantUser
(
@PathVariable
(
"id"
)
Long
id
)
throws
Exception
{
MerchantUserQueryVo
merchantUserQueryVo
=
merchantUserService
.
getMerchantUserById
(
id
);
return
ApiResult
.
ok
(
merchantUserQueryVo
);
}
/**
* 商家分页列表
* 商家
用户
分页列表
*/
@PostMapping
(
"/getPageList"
)
@OperationLog
(
name
=
"商家分页列表"
,
type
=
OperationLogType
.
PAGE
)
@ApiOperation
(
value
=
"商家分页列表"
,
response
=
MerchantUserQueryVo
.
class
)
@OperationLog
(
name
=
"商家
用户
分页列表"
,
type
=
OperationLogType
.
PAGE
)
@ApiOperation
(
value
=
"商家
用户
分页列表"
,
response
=
MerchantUserQueryVo
.
class
)
public
ApiResult
<
Paging
<
MerchantUserQueryVo
>>
getMerchantUserPageList
(
@Validated
@RequestBody
MerchantUserPageParam
merchantUserPageParam
)
throws
Exception
{
Paging
<
MerchantUserQueryVo
>
paging
=
merchantUserService
.
getMerchantUserPageList
(
merchantUserPageParam
);
return
ApiResult
.
ok
(
paging
);
...
...
@@ -103,17 +107,16 @@ public class MerchantUserController extends BaseController {
@PostMapping
(
"/login"
)
@OperationLogIgnore
@ApiOperation
(
value
=
"登录"
,
notes
=
"商家
登录"
,
response
=
LoginSysUserTokenVo
.
class
)
public
ApiResult
<
Login
Sys
UserTokenVo
>
login
(
@Validated
@RequestBody
LoginParam
loginParam
,
HttpServletResponse
response
,
@RequestHeader
(
required
=
false
)
String
language
)
throws
Exception
{
@ApiOperation
(
value
=
"登录"
,
notes
=
"商家
用户登录"
)
public
ApiResult
<
Login
Mer
UserTokenVo
>
login
(
@Validated
@RequestBody
LoginParam
loginParam
,
HttpServletResponse
response
,
@RequestHeader
(
required
=
false
)
String
language
)
throws
Exception
{
return
merchantUserService
.
login
(
loginParam
,
response
,
language
);
}
@PostMapping
(
"/register"
)
@OperationLogIgnore
@ApiOperation
(
value
=
"注册"
,
notes
=
"商家注册"
,
response
=
LoginSysUserTokenVo
.
class
)
public
ApiResult
<
LoginSysUserTokenVo
>
register
(
@Validated
@RequestBody
LoginParam
loginParam
,
HttpServletResponse
response
,
@RequestHeader
(
required
=
false
)
String
languag
e
)
throws
Exception
{
return
merchantUserService
.
login
(
loginParam
,
response
,
language
);
@ApiOperation
(
value
=
"注册"
,
notes
=
"商家注册"
)
public
ApiResult
<
Boolean
>
register
(
@Validated
@RequestBody
MerchantRegisterParam
merchantRegisterParam
,
HttpServletResponse
respons
e
)
throws
Exception
{
return
merchantUserService
.
register
(
merchantRegisterParam
);
}
}
api-system/src/main/java/com/jumeirah/api/system/controller/MerchantController.java
→
api-system/src/main/java/com/jumeirah/api/system/controller/Merchant
ForSys
Controller.java
View file @
3a55ac46
...
...
@@ -33,7 +33,7 @@ import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping
(
"/sys/merchant"
)
@Api
(
value
=
"航空公司商家表API"
,
tags
=
{
"航空公司商家表"
})
public
class
MerchantController
extends
BaseController
{
public
class
Merchant
ForSys
Controller
extends
BaseController
{
@Autowired
private
MerchantService
merchantService
;
...
...
common/src/main/java/com/jumeirah/common/convert/
Sys
UserConvert.java
→
common/src/main/java/com/jumeirah/common/convert/UserConvert.java
View file @
3a55ac46
...
...
@@ -29,9 +29,9 @@ import org.mapstruct.factory.Mappers;
* @date 2019-10-05
**/
@Mapper
public
interface
Sys
UserConvert
{
public
interface
UserConvert
{
SysUserConvert
INSTANCE
=
Mappers
.
getMapper
(
Sys
UserConvert
.
class
);
UserConvert
INSTANCE
=
Mappers
.
getMapper
(
UserConvert
.
class
);
/**
* 系统用户实体对象转换成登录用户VO对象
...
...
common/src/main/java/com/jumeirah/common/entity/Merchant.java
View file @
3a55ac46
...
...
@@ -18,7 +18,7 @@ import java.util.Date;
* 航空公司商家表
*
* @author giao
* @since 2020-10-1
3
* @since 2020-10-1
6
*/
@Data
@Accessors
(
chain
=
true
)
...
...
@@ -72,6 +72,14 @@ public class Merchant extends BaseEntity {
@ApiModelProperty
(
"在列表展示的图片url"
)
private
String
imageListUrl
;
@NotNull
(
message
=
"在列表展示的图片高度不能为空"
)
@ApiModelProperty
(
"在列表展示的图片高度"
)
private
Long
imageListHeight
;
@NotNull
(
message
=
"在列表展示的图片宽度不能为空"
)
@ApiModelProperty
(
"在列表展示的图片宽度"
)
private
Long
imageListWidth
;
@ApiModelProperty
(
"公司介绍图片url"
)
private
String
imageCompanyIntroductionUrl
;
...
...
@@ -93,9 +101,16 @@ public class Merchant extends BaseEntity {
@ApiModelProperty
(
"航空公司名称"
)
private
String
airlineName
;
@ApiModelProperty
(
"列表图片高"
)
private
Long
imageListHeight
;
@ApiModelProperty
(
"列表图片宽"
)
private
Long
imageListWidth
;
@ApiModelProperty
(
"公司所在地址"
)
private
String
location
;
@ApiModelProperty
(
"邮箱"
)
private
String
email
;
@ApiModelProperty
(
"营业执照图片url"
)
private
String
imageBusinessLicenseUrl
;
@ApiModelProperty
(
"审核注册状态 0未审核,1审核成功"
)
private
Integer
auditRegisterStatus
;
}
common/src/main/java/com/jumeirah/common/mapper/MerchantMapper.java
View file @
3a55ac46
...
...
@@ -15,7 +15,7 @@ import java.io.Serializable;
* 航空公司商家表 Mapper 接口
*
* @author giao
* @since 2020-10-1
3
* @since 2020-10-1
6
*/
@Repository
public
interface
MerchantMapper
extends
BaseMapper
<
Merchant
>
{
...
...
common/src/main/java/com/jumeirah/common/param/MerLoginParam.java
0 → 100755
View file @
3a55ac46
/*
* Copyright 2019-2029 geekidea(https://github.com/geekidea)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
com
.
jumeirah
.
common
.
param
;
import
io.geekidea.springbootplus.framework.shiro.service.LoginUsername
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
javax.validation.constraints.NotBlank
;
/**
* 登录参数
*
* @author geekidea
* @date 2019-05-15
**/
@Data
@ApiModel
(
"登录参数"
)
public
class
MerLoginParam
implements
LoginUsername
{
private
static
final
long
serialVersionUID
=
2854217576695117356L
;
@NotBlank
(
message
=
"请输入账号"
)
@ApiModelProperty
(
value
=
"账号"
,
example
=
"admin"
)
private
String
username
;
@NotBlank
(
message
=
"请输入密码"
)
@ApiModelProperty
(
value
=
"密码"
,
example
=
"123456"
)
private
String
password
;
// @ApiModelProperty("验证码")
// private String code;
}
common/src/main/java/com/jumeirah/common/param/MerchantPageParam.java
View file @
3a55ac46
...
...
@@ -12,12 +12,12 @@ import lombok.experimental.Accessors;
* </pre>
*
* @author giao
* @date 2020-10-1
3
* @date 2020-10-1
6
*/
@Data
@Accessors
(
chain
=
true
)
@EqualsAndHashCode
(
callSuper
=
true
)
@ApiModel
(
value
=
"商家表分页参数"
)
@ApiModel
(
value
=
"
航空公司
商家表分页参数"
)
public
class
MerchantPageParam
extends
BasePageOrderParam
{
private
static
final
long
serialVersionUID
=
1L
;
private
static
final
long
serialVersionUID
=
1L
;
}
common/src/main/java/com/jumeirah/common/param/MerchantRegisterParam.java
0 → 100755
View file @
3a55ac46
/*
* Copyright 2019-2029 geekidea(https://github.com/geekidea)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
com
.
jumeirah
.
common
.
param
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
javax.validation.constraints.NotBlank
;
import
java.io.Serializable
;
/**
* 注册参数
*
* @author geekidea
* @date 2019-05-15
**/
@Data
@ApiModel
(
"注册参数"
)
public
class
MerchantRegisterParam
implements
Serializable
{
private
static
final
long
serialVersionUID
=
2854217576695117357L
;
@NotBlank
(
message
=
"请输入密码"
)
@ApiModelProperty
(
value
=
"密码"
,
example
=
"123456"
)
private
String
password
;
@NotBlank
(
message
=
"参数不能为空"
)
@ApiModelProperty
(
"验证码"
)
private
String
smsCode
;
@ApiModelProperty
(
"商家名称"
)
@NotBlank
(
message
=
"参数不能为空"
)
private
String
name
;
@ApiModelProperty
(
"联系人手机号码"
)
@NotBlank
(
message
=
"请输入手机号"
)
private
String
phone
;
@ApiModelProperty
(
"联系人手机区号"
)
private
String
phoneArea
;
@ApiModelProperty
(
"公司所在地址"
)
private
String
location
;
@ApiModelProperty
(
"邮箱"
)
private
String
email
;
@ApiModelProperty
(
"营业执照图片url, 为多张可以传入数组"
)
private
String
imageBusinessLicenseUrl
;
}
common/src/main/java/com/jumeirah/common/service/MerchantService.java
View file @
3a55ac46
...
...
@@ -10,7 +10,7 @@ import io.geekidea.springbootplus.framework.core.pagination.Paging;
* 航空公司商家表 服务类
*
* @author giao
* @since 2020-10-1
3
* @since 2020-10-1
6
*/
public
interface
MerchantService
extends
BaseService
<
Merchant
>
{
...
...
common/src/main/java/com/jumeirah/common/service/MerchantUserService.java
View file @
3a55ac46
...
...
@@ -2,8 +2,9 @@ package com.jumeirah.common.service;
import
com.jumeirah.common.entity.MerchantUser
;
import
com.jumeirah.common.param.LoginParam
;
import
com.jumeirah.common.param.MerchantRegisterParam
;
import
com.jumeirah.common.param.MerchantUserPageParam
;
import
com.jumeirah.common.vo.Login
Sys
UserTokenVo
;
import
com.jumeirah.common.vo.Login
Mer
UserTokenVo
;
import
com.jumeirah.common.vo.MerchantUserQueryVo
;
import
io.geekidea.springbootplus.framework.common.api.ApiResult
;
import
io.geekidea.springbootplus.framework.common.service.BaseService
;
...
...
@@ -36,7 +37,10 @@ public interface MerchantUserService extends BaseService<MerchantUser> {
* @return
* @throws Exception
*/
ApiResult
<
LoginSysUserTokenVo
>
login
(
LoginParam
loginParam
,
HttpServletResponse
response
,
String
language
)
throws
Exception
;
ApiResult
<
LoginMerUserTokenVo
>
login
(
LoginParam
loginParam
,
HttpServletResponse
response
,
String
language
)
throws
Exception
;
ApiResult
<
Boolean
>
register
(
MerchantRegisterParam
merchantRegisterParam
)
throws
Exception
;
/**
...
...
common/src/main/java/com/jumeirah/common/service/impl/MerchantServiceImpl.java
View file @
3a55ac46
...
...
@@ -20,7 +20,7 @@ import org.springframework.transaction.annotation.Transactional;
* 航空公司商家表 服务实现类
*
* @author giao
* @since 2020-10-1
3
* @since 2020-10-1
6
*/
@Slf4j
@Service
...
...
api-merchant/src/main/java/com/jumeirah/api/merchant/service
/MerchantSmsService.java
→
common/src/main/java/com/jumeirah/common/service/impl
/MerchantSmsService.java
View file @
3a55ac46
package
com
.
jumeirah
.
api
.
merchant
.
service
;
package
com
.
jumeirah
.
common
.
service
.
impl
;
import
io.geekidea.springbootplus.framework.common.api.ApiResult
;
...
...
api-merchant/src/main/java/com/jumeirah/api/merchant/service
/MerchantSmsServiceImpl.java
→
common/src/main/java/com/jumeirah/common/service/impl
/MerchantSmsServiceImpl.java
View file @
3a55ac46
package
com
.
jumeirah
.
api
.
merchant
.
service
;
package
com
.
jumeirah
.
common
.
service
.
impl
;
import
cn.hutool.core.util.RandomUtil
;
import
io.geekidea.springbootplus.framework.common.api.ApiResult
;
...
...
common/src/main/java/com/jumeirah/common/service/impl/MerchantUserServiceImpl.java
View file @
3a55ac46
...
...
@@ -4,17 +4,20 @@ import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.metadata.OrderItem
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.jumeirah.common.convert.SysUserConvert
;
import
com.jumeirah.common.convert.UserConvert
;
import
com.jumeirah.common.entity.Merchant
;
import
com.jumeirah.common.entity.MerchantRole
;
import
com.jumeirah.common.entity.MerchantUser
;
import
com.jumeirah.common.enums.StateEnum
;
import
com.jumeirah.common.mapper.MerchantUserMapper
;
import
com.jumeirah.common.param.LoginParam
;
import
com.jumeirah.common.param.MerchantRegisterParam
;
import
com.jumeirah.common.param.MerchantUserPageParam
;
import
com.jumeirah.common.service.MerchantRolePermissionService
;
import
com.jumeirah.common.service.MerchantRoleService
;
import
com.jumeirah.common.service.MerchantService
;
import
com.jumeirah.common.service.MerchantUserService
;
import
com.jumeirah.common.vo.Login
Sys
UserTokenVo
;
import
com.jumeirah.common.vo.Login
Mer
UserTokenVo
;
import
com.jumeirah.common.vo.MerchantUserQueryVo
;
import
io.geekidea.springbootplus.config.properties.JwtProperties
;
import
io.geekidea.springbootplus.config.properties.SpringBootPlusProperties
;
...
...
@@ -35,6 +38,7 @@ import lombok.extern.slf4j.Slf4j;
import
org.apache.shiro.SecurityUtils
;
import
org.apache.shiro.authc.AuthenticationException
;
import
org.apache.shiro.subject.Subject
;
import
org.springframework.beans.BeanUtils
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.context.annotation.Lazy
;
import
org.springframework.data.redis.core.RedisTemplate
;
...
...
@@ -77,6 +81,12 @@ public class MerchantUserServiceImpl extends BaseServiceImpl<MerchantUserMapper,
private
MerchantRoleService
merchantRoleService
;
@Autowired
private
MerchantService
merchantService
;
@Autowired
private
MerchantSmsService
merchantSmsService
;
@Autowired
private
MerchantRolePermissionService
merchantRolePermissionService
;
public
MerchantUser
getSysUserByUsername
(
String
username
)
throws
Exception
{
...
...
@@ -87,7 +97,7 @@ public class MerchantUserServiceImpl extends BaseServiceImpl<MerchantUserMapper,
@Transactional
(
rollbackFor
=
Exception
.
class
)
@Override
public
ApiResult
<
Login
Sys
UserTokenVo
>
login
(
LoginParam
loginParam
,
HttpServletResponse
response
,
String
language
)
throws
Exception
{
public
ApiResult
<
Login
Mer
UserTokenVo
>
login
(
LoginParam
loginParam
,
HttpServletResponse
response
,
String
language
)
throws
Exception
{
// // 校验验证码
// checkVerifyCode(loginParam.getVerifyToken(), loginParam.getCode());
...
...
@@ -115,7 +125,7 @@ public class MerchantUserServiceImpl extends BaseServiceImpl<MerchantUserMapper,
}
// 将系统用户对象转换成登录用户对象
LoginUserVo
loginSysUserVo
=
Sys
UserConvert
.
INSTANCE
.
merchantUserToLoginSysUserVo
(
merchantUser
);
LoginUserVo
loginSysUserVo
=
UserConvert
.
INSTANCE
.
merchantUserToLoginSysUserVo
(
merchantUser
);
// // 获取部门
// SysDepartment sysDepartment = sysDepartmentService.getById(merchantUser.getDepartmentId());
...
...
@@ -178,7 +188,7 @@ public class MerchantUserServiceImpl extends BaseServiceImpl<MerchantUserMapper,
redisTemplate.opsForValue().set(tokenSha256, loginSysUserVo, 1, TimeUnit.DAYS);*/
// 返回token和登录用户信息对象
Login
SysUserTokenVo
loginSysUserTokenVo
=
new
LoginSys
UserTokenVo
();
Login
MerUserTokenVo
loginSysUserTokenVo
=
new
LoginMer
UserTokenVo
();
loginSysUserTokenVo
.
setToken
(
token
);
loginSysUserTokenVo
.
setLoginSysUserVo
(
loginSysUserVo
);
...
...
@@ -188,6 +198,38 @@ public class MerchantUserServiceImpl extends BaseServiceImpl<MerchantUserMapper,
return
ApiResult
.
ok
(
loginSysUserTokenVo
);
}
@Override
public
ApiResult
<
Boolean
>
register
(
MerchantRegisterParam
merchantRegisterPram
)
throws
Exception
{
// 校验验证码
boolean
equalsRegisterCode
=
merchantSmsService
.
equalsRegisterCode
(
merchantRegisterPram
.
getPhoneArea
(),
merchantRegisterPram
.
getPhone
(),
merchantRegisterPram
.
getSmsCode
());
if
(!
equalsRegisterCode
)
{
return
ApiResult
.
fail
(
ApiCode
.
SMS_CODE_ERROR
);
}
// 删除已使用的验证码
merchantSmsService
.
deleteRegisterCode
(
merchantRegisterPram
.
getPhoneArea
(),
merchantRegisterPram
.
getPhone
());
// 判断是否已经注册
// if (appUserService.hasUserByPhoneNumer(loginParam.getPhoneArea(), loginParam.getPhone())) {
// // 如果已经注册直接走登陆的代码
// return appUserService.login(loginParam, language, true);
// }
// 没注册则先保存到数据库
Merchant
merchant
=
new
Merchant
();
BeanUtils
.
copyProperties
(
merchantRegisterPram
,
merchant
);
merchant
.
setAuditRegisterStatus
(
0
);
merchant
.
setState
(
1
);
boolean
isDbOk
=
merchantService
.
saveMerchant
(
merchant
);
if
(!
isDbOk
)
{
return
ApiResult
.
fail
(
ApiCode
.
SPRING_BOOT_PLUS_EXCEPTION
);
}
// 创建一个该公司默认的管理员账号
return
ApiResult
.
ok
();
}
@Transactional
(
rollbackFor
=
Exception
.
class
)
@Override
...
...
common/src/main/java/com/jumeirah/common/service/impl/SysLoginServiceImpl.java
View file @
3a55ac46
...
...
@@ -2,7 +2,7 @@
package
com
.
jumeirah
.
common
.
service
.
impl
;
import
com.baomidou.mybatisplus.core.conditions.query.QueryWrapper
;
import
com.jumeirah.common.convert.
Sys
UserConvert
;
import
com.jumeirah.common.convert.UserConvert
;
import
com.jumeirah.common.entity.SysDepartment
;
import
com.jumeirah.common.entity.SysRole
;
import
com.jumeirah.common.entity.SysUser
;
...
...
@@ -120,7 +120,7 @@ public class SysLoginServiceImpl implements SysLoginService {
}
// 将系统用户对象转换成登录用户对象
LoginUserVo
loginSysUserVo
=
Sys
UserConvert
.
INSTANCE
.
sysUserToLoginSysUserVo
(
sysUser
);
LoginUserVo
loginSysUserVo
=
UserConvert
.
INSTANCE
.
sysUserToLoginSysUserVo
(
sysUser
);
// 获取部门
SysDepartment
sysDepartment
=
sysDepartmentService
.
getById
(
sysUser
.
getDepartmentId
());
...
...
common/src/main/java/com/jumeirah/common/vo/LoginMerUserTokenVo.java
0 → 100755
View file @
3a55ac46
/*
* Copyright 2019-2029 geekidea(https://github.com/geekidea)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
com
.
jumeirah
.
common
.
vo
;
import
io.geekidea.springbootplus.framework.shiro.service.LoginToken
;
import
io.geekidea.springbootplus.framework.shiro.vo.LoginUserVo
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.experimental.Accessors
;
/**
* @author geekidea
* @date 2019-10-26
**/
@Data
@Accessors
(
chain
=
true
)
@ApiModel
(
"登录用户信息TokenVO"
)
public
class
LoginMerUserTokenVo
implements
LoginToken
{
private
static
final
long
serialVersionUID
=
-
2138450422989081056L
;
@ApiModelProperty
(
"token"
)
private
String
token
;
/**
* 登录用户对象
*/
private
LoginUserVo
loginSysUserVo
;
}
common/src/main/resources/mapper/BusinessPlainMapper.xml
View file @
3a55ac46
...
...
@@ -31,6 +31,7 @@
from business_plain bp
INNER JOIN merchant m ON bp.mc_id=m.id
where bp.business_type=#{param.type}
AND m.state=1 and m.audit_register_status=1
</select>
</mapper>
common/src/main/resources/mapper/CharterIntroductionMapper.xml
View file @
3a55ac46
...
...
@@ -31,6 +31,9 @@
from charter_introduction ci
INNER JOIN merchant m ON ci.mc_id=m.id
where ci.type = #{param.type}
AND m.state=1 and m.audit_register_status=1
</select>
...
...
common/src/main/resources/mapper/MerchantMapper.xml
View file @
3a55ac46
...
...
@@ -4,7 +4,7 @@
<!-- 通用查询结果列 -->
<sql
id=
"Base_Column_List"
>
id, name, phone, phone_area, head, remark, state, deleted, create_time, update_time, recharge_bank, recharge_name, recharge_bank_number, image_list_url, image_
company_introduction_url, image_team_introduction_url, image_advantage_url, text_company_introduction, text_team_introduction, text_advantage, airline_name,image_list_height,image_list_width
id, name, phone, phone_area, head, remark, state, deleted, create_time, update_time, recharge_bank, recharge_name, recharge_bank_number, image_list_url, image_
list_height, image_list_width, image_company_introduction_url, image_team_introduction_url, image_advantage_url, text_company_introduction, text_team_introduction, text_advantage, airline_name, location, email, image_business_license_url, audit_register_status
</sql>
<select
id=
"getMerchantById"
resultType=
"com.jumeirah.common.vo.MerchantQueryVo"
>
...
...
@@ -18,6 +18,9 @@
select
<include
refid=
"Base_Column_List"
/>
from merchant
<where>
state=1 and audit_register_status=1
</where>
</select>
</mapper>
config/src/main/resources/config/application-test.yml
View file @
3a55ac46
...
...
@@ -2,7 +2,7 @@ spring-boot-plus:
# 是否启用ansi控制台输出有颜色的字体,local环境建议开启,服务器环境设置为false
enable-ansi
:
false
# 当前环境服务IP地址
server-ip
:
47.
105.159.10
server-ip
:
47.
99.47.225
# 文件上传下载配置
upload-path
:
/opt/upload/
# AOP配置
...
...
@@ -15,15 +15,15 @@ spring-boot-plus:
spring
:
datasource
:
url
:
jdbc:mysql://
mysql57
:3306/Jumeirah?serverTimezone=UTC&useUnicode=true&characterEncoding=utf8&useSSL=false&allowPublicKeyRetrieval=true
url
:
jdbc:mysql://
47.99.47.225
:3306/Jumeirah?serverTimezone=UTC&useUnicode=true&characterEncoding=utf8&useSSL=false&allowPublicKeyRetrieval=true
username
:
root
password
:
123
password
:
temple123456
# Redis配置
redis
:
database
:
0
host
:
redis6
password
:
host
:
127.0.0.1
password
:
temple123456
port
:
6379
# 打印SQL语句和结果集,本地开发环境可开启,线上注释掉
...
...
config/src/main/resources/config/application.yml
View file @
3a55ac46
...
...
@@ -185,8 +185,8 @@ spring-boot-plus:
# 排除登录 注册 登出
-
/app/user/registerOrLogin,/app/user/login
-
/sys/login,/sys/logout,/sys/register
-
/merchant
User/login
-
/app/sms/registerOrLoginCode
-
/merchant
/user/login,/merchant/user/register
-
/app/sms/registerOrLoginCode
,/merchant/sms/registerCode
# 排除静态资源
-
/static/**,/templates/**
# 排除Swagger
...
...
@@ -195,7 +195,7 @@ spring-boot-plus:
# - /actuator/**
-
# 排除首页
-
/,/index.html
-
/app/noRole
-
/app/noRole
,/merchant/hello/world
# 航空公司介绍分页列表
-
/app/airline/getPageList
# 公务机出售托管表分页列表
...
...
@@ -282,9 +282,9 @@ spring:
elideSetAutoCommits
:
true
maintainTimeStats
:
false
hikari
:
minimum-idle
:
10
minimum-idle
:
2
maximum-pool-size
:
20
idle-timeout
:
1000
0
idle-timeout
:
1000
max-lifetime
:
1800000
connection-timeout
:
30000
############################### HikariCP 数据源配置 end ################################
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment