1.提现功能改造
2.换车 3.无订单且非管理员控制情况下关锁 4.增加命令的操作人 5.增加gps、最后定位时间 6.一键出仓、一键入仓
This commit is contained in:
parent
91433732dc
commit
e1df5bacc9
|
@ -98,6 +98,12 @@ public class AppVerifyController extends BaseController
|
|||
@Autowired
|
||||
private ISysDeptService deptService;
|
||||
|
||||
@Autowired
|
||||
private IEtCapitalFlowService etCapitalFlowService;
|
||||
|
||||
@Autowired
|
||||
private IEtWithdrawService etWithdrawService;
|
||||
|
||||
|
||||
/**
|
||||
* 故障上报
|
||||
|
@ -547,7 +553,8 @@ public class AppVerifyController extends BaseController
|
|||
public AjaxResult unlocking(String sn)
|
||||
{
|
||||
logger.info("【管理员开锁请求】:{}",sn);
|
||||
Boolean aBoolean =asDeviceService.unlocking(sn);
|
||||
AsUser asUser = getLoginUser().getAsUser();
|
||||
Boolean aBoolean =asDeviceService.unlocking(sn,asUser.getUserName());
|
||||
return success(aBoolean);
|
||||
}
|
||||
|
||||
|
@ -559,7 +566,8 @@ public class AppVerifyController extends BaseController
|
|||
public AjaxResult lock(String sn)
|
||||
{
|
||||
logger.info("【管理员关锁请求】:{}",sn);
|
||||
Boolean aBoolean =asDeviceService.adminLock(sn);
|
||||
AsUser asUser = getLoginUser().getAsUser();
|
||||
Boolean aBoolean =asDeviceService.adminLock(sn,asUser.getUserName());
|
||||
return success(aBoolean);
|
||||
}
|
||||
|
||||
|
@ -872,17 +880,19 @@ public class AppVerifyController extends BaseController
|
|||
public AjaxResult getDept()
|
||||
{
|
||||
AsUser asUser = getLoginUser().getAsUser();
|
||||
logger.info("获取到当前app登录用户:【{}】", JSON.toJSON(asUser));
|
||||
if(ObjectUtil.isNull(asUser.getSysUserId())){
|
||||
throw new RuntimeException("用户【"+asUser.getUserName()+"】未绑定系统用户");
|
||||
AsUser asUser1 = asUserService.selectUserById(asUser.getUserId());
|
||||
logger.info("获取到当前app登录用户:【{}】", JSON.toJSON(asUser1));
|
||||
if(ObjectUtil.isNull(asUser1.getSysUserId())){
|
||||
throw new RuntimeException("用户【"+asUser1.getUserName()+"】未绑定系统用户");
|
||||
}
|
||||
SysUser sysUser = userService.selectUserById(asUser.getSysUserId());
|
||||
SysUser sysUser = userService.selectUserById(asUser1.getSysUserId());
|
||||
Long deptId;
|
||||
SysDept sysDept = null;
|
||||
if(!sysUser.isAdmin()){
|
||||
deptId = sysUser.getDeptId();
|
||||
sysDept = deptService.selectDeptById(deptId);
|
||||
logger.info("根据token获取运营商信息:【{}】", JSON.toJSON(sysDept));
|
||||
return success(sysDept);
|
||||
}
|
||||
return success(sysDept);
|
||||
}
|
||||
|
@ -979,6 +989,17 @@ public class AppVerifyController extends BaseController
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询押金订单
|
||||
*/
|
||||
@GetMapping("/getDepositOrder")
|
||||
public AjaxResult getDepositOrder(Long userId)
|
||||
{
|
||||
logger.info("查询押金订单请求:【{}】", userId);
|
||||
EtOrder depositOrder = etOrderService.getDepositOrder(userId);
|
||||
return AjaxResult.success(depositOrder);
|
||||
}
|
||||
|
||||
/**
|
||||
* 提交审核
|
||||
*/
|
||||
|
@ -988,4 +1009,66 @@ public class AppVerifyController extends BaseController
|
|||
{
|
||||
return toAjax(etOrderService.updateEtOrderByOrderNo(etOrder));
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询资金流水列表
|
||||
*/
|
||||
@GetMapping("/flowList")
|
||||
public TableDataInfo list(EtCapitalFlow etCapitalFlow)
|
||||
{
|
||||
startPage();
|
||||
List<EtCapitalFlow> list = etCapitalFlowService.selectEtCapitalFlowList(etCapitalFlow);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 管理员提现
|
||||
*/
|
||||
@Log(title = "管理员提现", businessType = BusinessType.ADMINWITHDRAW)
|
||||
@PostMapping("/admin/withdraw")
|
||||
public AjaxResult add(@RequestBody EtWithdraw etWithdraw)
|
||||
{
|
||||
logger.info("管理员提现请求:【{}】", JSON.toJSON(etWithdraw));
|
||||
AsUser asUser = getLoginUser().getAsUser();
|
||||
logger.info("【管理员提现】获取当前用户:【{}】", JSON.toJSON(asUser));
|
||||
Long userId = asUser.getUserId();
|
||||
int i = deptService.adminWithdraw(etWithdraw.getAmount(),userId);
|
||||
return toAjax(i);
|
||||
}
|
||||
|
||||
/**
|
||||
* 换车关锁
|
||||
*/
|
||||
@Log(title = "换车关锁", businessType = BusinessType.CHANGELOCK)
|
||||
@PostMapping("/changeVehicle/lock")
|
||||
public AjaxResult changeVehicleLock(String orderNo,String changeReason)
|
||||
{
|
||||
if (StrUtil.isBlank(orderNo)){
|
||||
logger.info("没有orderNo参数:【orderNo={}】",orderNo);
|
||||
return error("请传orderNo号参数"+"【orderNo="+orderNo+"】");
|
||||
}
|
||||
logger.info("【换车关锁请求】:orderNo={}",orderNo);
|
||||
Boolean aBoolean = etOrderService.changeVehicleLock(orderNo,changeReason);
|
||||
return success(aBoolean);
|
||||
}
|
||||
|
||||
/**
|
||||
* 换车开锁
|
||||
*/
|
||||
@Log(title = "换车开锁", businessType = BusinessType.CHANGEUNLOCK)
|
||||
@PostMapping("/changeVehicle/unlocking")
|
||||
public AjaxResult changeVehicleLockUnlocking(String orderNo,String newSn)
|
||||
{
|
||||
if (StrUtil.isBlank(newSn)){
|
||||
logger.info("没有sn号参数:【newSn={}】",newSn);
|
||||
return error("请传sn号参数"+"【newSn="+newSn+"】");
|
||||
}
|
||||
if (StrUtil.isBlank(orderNo)){
|
||||
logger.info("没有orderNo参数:【orderNo={}】",orderNo);
|
||||
return error("请传orderNo号参数"+"【orderNo="+orderNo+"】");
|
||||
}
|
||||
logger.info("【换车开锁请求】:orderNo={},newSn ={}",orderNo,newSn);
|
||||
Boolean aBoolean =etOrderService.changeVehicleLockUnlocking(orderNo,newSn);
|
||||
return success(aBoolean);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -203,6 +203,8 @@ public class ReceiveController {
|
|||
device.setRemainingMileage(remainingMileage);
|
||||
device.setRemainingPower(electricQuantity.toString());
|
||||
device.setLastTime(DateUtils.getNowDate());
|
||||
device.setLastLocationTime(DateUtils.getNowDate());
|
||||
device.setGps("1");
|
||||
// 信号强度
|
||||
device.setSignalStrength(value.getCsq());
|
||||
device.setSatellites(value.getS());
|
||||
|
@ -213,13 +215,13 @@ public class ReceiveController {
|
|||
/** 2. 判断是否在禁行区内
|
||||
* 如果在, 根据配置‘禁行区内断电配置’进行断电
|
||||
**/
|
||||
String isAdminUnlocking = device.getIsAdminUnlocking();// 是否是管理员开锁:0-否;1-是
|
||||
boolean noRidingArea = asDeviceService.isNoRidingArea(device.getSn(), device.getAreaId());
|
||||
if(noRidingArea){
|
||||
String isAdminUnlocking = device.getIsAdminUnlocking();// 是否管理员开锁
|
||||
String noRidingOutage = area.getNoRidingOutage();
|
||||
if (noRidingOutage.equals("1") && value.getStatus() != 3 && !isAdminUnlocking.equals("1")) { // 禁行区内断电
|
||||
log.info("禁行区内断电命令--SN:" + device.getSn());
|
||||
asDeviceService.sendCommand(device.getMac(), Token.getToken(), IotConstants.COMMAND_QLOSE+IotConstants.COMMAND_FREQUENCY_5, "禁行区内断电",null);
|
||||
asDeviceService.sendCommand(device.getMac(), Token.getToken(), IotConstants.COMMAND_QLOSE+IotConstants.COMMAND_FREQUENCY_5, "禁行区内断电",null,null);
|
||||
device.setLockStatus(ServiceConstants.LOCK_STATUS_CLOSE);
|
||||
int updateAsDevice = asDeviceService.updateAsDevice(device);
|
||||
if (updateAsDevice > 0) {
|
||||
|
@ -231,7 +233,7 @@ public class ReceiveController {
|
|||
boolean inPolygon = asDeviceService.isNoRidingAreaWithTolerance(device.getSn(), device.getAreaId(),20);
|
||||
if (inPolygon) {
|
||||
log.info("距离禁行区20米内发送警告命令--SN:" + device.getSn());
|
||||
asDeviceService.sendCommand(device.getMac(), Token.getToken(), IotConstants.COMMAND_PLAY2, "距离禁行区20米内",null);
|
||||
asDeviceService.sendCommand(device.getMac(), Token.getToken(), IotConstants.COMMAND_PLAY2, "距离禁行区20米内",null,null);
|
||||
}
|
||||
}
|
||||
/** 3.超出运营区外断电*/
|
||||
|
@ -242,14 +244,13 @@ public class ReceiveController {
|
|||
if(inPolygon){
|
||||
//在20米范围内,发报警
|
||||
log.info("超出运营区30米内发送警告命令--SN:" + device.getSn());
|
||||
asDeviceService.sendCommand(device.getMac(), Token.getToken(), IotConstants.COMMAND_PLAY3, "超出运营区30米内",null);
|
||||
asDeviceService.sendCommand(device.getMac(), Token.getToken(), IotConstants.COMMAND_PLAY3, "超出运营区30米内",null,null);
|
||||
}else{
|
||||
//超出运营区外断电
|
||||
String isAdminUnlocking = device.getIsAdminUnlocking();// 是否管理员开锁
|
||||
String areaOutOutage = area.getAreaOutOutage();
|
||||
if (areaOutOutage.equals("1") && value.getStatus() != 3 && !isAdminUnlocking.equals("1")) { // 超出营运区断电
|
||||
log.info("超出营运区断电命令--SN:" + device.getSn());
|
||||
asDeviceService.sendCommand(device.getMac(), Token.getToken(), IotConstants.COMMAND_QLOSE+IotConstants.COMMAND_FREQUENCY_5, "超出营运区断电",null);
|
||||
asDeviceService.sendCommand(device.getMac(), Token.getToken(), IotConstants.COMMAND_QLOSE+IotConstants.COMMAND_FREQUENCY_5, "超出营运区断电",null,null);
|
||||
device.setLockStatus(ServiceConstants.LOCK_STATUS_CLOSE);
|
||||
int updateAsDevice = asDeviceService.updateAsDevice(device);
|
||||
if (updateAsDevice > 0) {
|
||||
|
@ -262,7 +263,7 @@ public class ReceiveController {
|
|||
Boolean inOrderBySn = etOrderService.isInOrderBySn(device.getSn());
|
||||
if (inOrderBySn && ServiceConstants.VEHICLE_STATUS_IN_USING.equals(device.getStatus()) && ServiceConstants.LOCK_STATUS_CLOSE.equals(device.getLockStatus())) { // 有正在骑行的订单,给车辆上电
|
||||
log.info("返回营运区上电,有正在骑行的订单,给车辆上电--SN:" + device.getSn());
|
||||
asDeviceService.sendCommand(device.getMac(), Token.getToken(), IotConstants.COMMAND_OPEN+IotConstants.COMMAND_FREQUENCY_5, "返回营运区上电",null);
|
||||
asDeviceService.sendCommand(device.getMac(), Token.getToken(), IotConstants.COMMAND_OPEN+IotConstants.COMMAND_FREQUENCY_5, "返回营运区上电",null,null);
|
||||
// 更新车辆状态和锁状态
|
||||
/** 3.更新车辆状态*/
|
||||
device.setLockStatus(ServiceConstants.LOCK_STATUS_OPEN);
|
||||
|
@ -294,6 +295,12 @@ public class ReceiveController {
|
|||
|
||||
// 优化轨迹,如果获取到的定位与最后一个定位相同,则不添加
|
||||
optimizeRoute(jsonArray, newPoint,lon,lat,etOrder);
|
||||
}else{
|
||||
//当前无订单,并且不是管理员开锁的情况下,直接关锁
|
||||
if(!isAdminUnlocking.equals("1")){
|
||||
log.info("当前无订单,并且不是管理员开锁的情况下,直接关锁--------" +logEntry.getDevName());
|
||||
asDeviceService.sendCommand(asDevice.getMac(), Token.getToken(), IotConstants.COMMAND_CLOSE+IotConstants.COMMAND_FREQUENCY_3600,"无订单关锁",null,null);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -357,8 +364,9 @@ public class ReceiveController {
|
|||
device.setRemainingMileage(remainingMileage);
|
||||
device.setRemainingPower(electricQuantity.toString());
|
||||
device.setLastTime(DateUtils.getNowDate());
|
||||
device.setGps("0");
|
||||
device.setSignalStrength(value.getCsq());
|
||||
device.setSatellites(value.getS());
|
||||
device.setSatellites(0);
|
||||
device.setQuality(value.getQ());
|
||||
int i = asDeviceService.updateLocation(device);
|
||||
if(i>0){
|
||||
|
|
|
@ -132,6 +132,30 @@ public class AsDeviceController extends BaseController
|
|||
return toAjax(asDeviceService.oneClickOffline(deviceIds));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 一键出仓
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('system:device:oneClickOnline')")
|
||||
@Log(title = "设备", businessType = BusinessType.ONLINE)
|
||||
@PostMapping("/oneClickListing/{deviceIds}")
|
||||
public AjaxResult oneClickListing(@PathVariable Long[] deviceIds)
|
||||
{
|
||||
return toAjax(asDeviceService.oneClickListing(deviceIds));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 一键入仓
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('system:device:oneClickOnline')")
|
||||
@Log(title = "设备", businessType = BusinessType.ONLINE)
|
||||
@PostMapping("/oneClickWarehousing/{deviceIds}")
|
||||
public AjaxResult oneClickWarehousing(@PathVariable Long[] deviceIds)
|
||||
{
|
||||
return toAjax(asDeviceService.oneClickWarehousing(deviceIds));
|
||||
}
|
||||
|
||||
/**
|
||||
* 响铃寻车
|
||||
*/
|
||||
|
@ -171,7 +195,7 @@ public class AsDeviceController extends BaseController
|
|||
public AjaxResult unlocking(String sn)
|
||||
{
|
||||
logger.info("【管理员开锁请求】:{}",sn);
|
||||
Boolean aBoolean =asDeviceService.unlocking(sn);
|
||||
Boolean aBoolean =asDeviceService.unlocking(sn,getUsername());
|
||||
return success(aBoolean);
|
||||
}
|
||||
|
||||
|
@ -185,7 +209,7 @@ public class AsDeviceController extends BaseController
|
|||
public AjaxResult unlockingByMac(String mac)
|
||||
{
|
||||
logger.info("【管理员开锁请求】:{}",mac);
|
||||
Boolean aBoolean =asDeviceService.unlockingByMac(mac);
|
||||
Boolean aBoolean =asDeviceService.unlockingByMac(mac,getUsername());
|
||||
return success(aBoolean);
|
||||
}
|
||||
|
||||
|
@ -198,7 +222,7 @@ public class AsDeviceController extends BaseController
|
|||
public AjaxResult lock(String sn)
|
||||
{
|
||||
logger.info("【管理员关锁请求】:{}",sn);
|
||||
Boolean aBoolean =asDeviceService.adminLock(sn);
|
||||
Boolean aBoolean =asDeviceService.adminLock(sn,getUsername());
|
||||
return success(aBoolean);
|
||||
}
|
||||
|
||||
|
@ -211,7 +235,7 @@ public class AsDeviceController extends BaseController
|
|||
public AjaxResult lockByMac(String mac)
|
||||
{
|
||||
logger.info("【管理员关锁请求】:{}",mac);
|
||||
Boolean aBoolean =asDeviceService.adminLockByMac(mac);
|
||||
Boolean aBoolean =asDeviceService.adminLockByMac(mac,getUsername());
|
||||
return success(aBoolean);
|
||||
}
|
||||
|
||||
|
|
|
@ -2,6 +2,15 @@ package com.ruoyi.web.controller.system;
|
|||
|
||||
import java.util.List;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
|
||||
import cn.hutool.core.util.ObjectUtil;
|
||||
import com.alibaba.fastjson2.JSON;
|
||||
import com.ruoyi.common.core.domain.entity.AsUser;
|
||||
import com.ruoyi.common.core.domain.entity.SysDept;
|
||||
import com.ruoyi.common.core.domain.entity.SysUser;
|
||||
import com.ruoyi.system.domain.EtWithdraw;
|
||||
import com.ruoyi.system.service.IEtWithdrawService;
|
||||
import com.ruoyi.system.service.ISysDeptService;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
|
@ -34,6 +43,9 @@ public class EtCapitalFlowController extends BaseController
|
|||
@Autowired
|
||||
private IEtCapitalFlowService etCapitalFlowService;
|
||||
|
||||
@Autowired
|
||||
private ISysDeptService deptService;
|
||||
|
||||
/**
|
||||
* 查询资金流水列表
|
||||
*/
|
||||
|
@ -101,4 +113,34 @@ public class EtCapitalFlowController extends BaseController
|
|||
{
|
||||
return toAjax(etCapitalFlowService.deleteEtCapitalFlowByFlowIds(flowIds));
|
||||
}
|
||||
|
||||
/**
|
||||
* 管理员提现
|
||||
*/
|
||||
@Log(title = "管理员提现", businessType = BusinessType.ADMINWITHDRAW)
|
||||
@PostMapping("/withdraw")
|
||||
public AjaxResult add(@RequestBody EtWithdraw etWithdraw)
|
||||
{
|
||||
logger.info("管理员提现请求:【{}】", JSON.toJSON(etWithdraw));
|
||||
Long deptId = getDeptId();
|
||||
SysDept sysDept = deptService.selectDeptById(deptId);
|
||||
if(ObjectUtil.isNull(sysDept.getAppUserId())){
|
||||
throw new RuntimeException("运营商未绑定app用户,请联系管理员添加【绑定微信用户】");
|
||||
}
|
||||
logger.info("【管理员提现】获取当前部门:【{}】", JSON.toJSON(sysDept));
|
||||
int i = deptService.adminWithdraw(etWithdraw.getAmount(),sysDept.getAppUserId());
|
||||
return toAjax(i);
|
||||
}
|
||||
|
||||
/**
|
||||
* 提现失败
|
||||
*/
|
||||
@Log(title = "管理员提现失败", businessType = BusinessType.ADMINWITHDRAW)
|
||||
@PostMapping("/rejectWithdraw")
|
||||
public AjaxResult rejectWithdraw(@RequestBody EtCapitalFlow flow)
|
||||
{
|
||||
logger.info("管理员提现失败请求:【{}】", JSON.toJSON(flow));
|
||||
int i = deptService.rejectWithdraw(flow.getFlowId());
|
||||
return toAjax(i);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,13 +1,17 @@
|
|||
package com.ruoyi.web.controller.system;
|
||||
|
||||
import cn.hutool.core.util.ObjectUtil;
|
||||
import com.alibaba.fastjson2.JSON;
|
||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.constant.UserConstants;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.core.domain.entity.SysDept;
|
||||
import com.ruoyi.common.core.domain.entity.SysUser;
|
||||
import com.ruoyi.common.core.domain.model.LoginUser;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.common.utils.SecurityUtils;
|
||||
import com.ruoyi.common.utils.StringUtils;
|
||||
import com.ruoyi.system.domain.EtAreaDept;
|
||||
import com.ruoyi.system.mapper.EtAreaDeptMapper;
|
||||
|
@ -193,4 +197,15 @@ public class SysDeptController extends BaseController
|
|||
return ajax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 绑定APP用户
|
||||
*/
|
||||
@Log(title = "绑定APP用户", businessType = BusinessType.UPDATE)
|
||||
@PutMapping("/bandAppUser")
|
||||
public AjaxResult bandAppUser(@RequestBody SysDept dept)
|
||||
{
|
||||
logger.info("【运营商】绑定APP用户", JSON.toJSON(dept));
|
||||
return toAjax(deptService.bandAppUser(dept));
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -35,6 +35,11 @@ public class ServiceConstants {
|
|||
*/
|
||||
public static final String ORDER_TYPE_WITHDRAW = "5";
|
||||
|
||||
/**
|
||||
* 订单类型: 6-提现失败
|
||||
*/
|
||||
public static final String ORDER_TYPE_WITHDRAW_FAIL = "6";
|
||||
|
||||
/**----------------------------订单类型end----------------------------*/
|
||||
/**----------------------------支付场景start----------------------------*/
|
||||
/** 支付场景: 1-骑行支付,2-取消预约支付,3-套餐支付,4-押金支付 */
|
||||
|
@ -588,4 +593,22 @@ public class ServiceConstants {
|
|||
public static final String RETURN_VERIFY_YES = "1";
|
||||
/**----------------------------还车是否拍照审核end----------------------------*/
|
||||
|
||||
|
||||
/**----------------------------资金流水状态start----------------------------*/
|
||||
/** 状态: 0-待结算,2-驳回,8-已完成 */
|
||||
/**
|
||||
* 0-待结算
|
||||
*/
|
||||
public static final String FLOW_STATUS_APPLY = "0";
|
||||
/**
|
||||
* 2-驳回
|
||||
*/
|
||||
public static final String FLOW_STATUS_REJECT = "2";
|
||||
|
||||
/**
|
||||
* 8-已完成
|
||||
*/
|
||||
public static final String FLOW_STATUS_COMPLETE = "8";
|
||||
/**----------------------------资金流水状态end----------------------------*/
|
||||
|
||||
}
|
||||
|
|
|
@ -106,6 +106,17 @@ public class SysDept extends BaseEntity
|
|||
/** 退款回调地址 */
|
||||
private String refundNotifyUrl;
|
||||
|
||||
/** app用户id,用于提现 */
|
||||
private Long appUserId;
|
||||
|
||||
public Long getAppUserId() {
|
||||
return appUserId;
|
||||
}
|
||||
|
||||
public void setAppUserId(Long appUserId) {
|
||||
this.appUserId = appUserId;
|
||||
}
|
||||
|
||||
public String getSeparateAccount() {
|
||||
return separateAccount;
|
||||
}
|
||||
|
|
|
@ -129,6 +129,17 @@ public class SysUser extends BaseEntity
|
|||
/** app用户id,用于分账或提现 */
|
||||
private Long appUserId;
|
||||
|
||||
/** app用户名 */
|
||||
private String appUserName;
|
||||
|
||||
public String getAppUserName() {
|
||||
return appUserName;
|
||||
}
|
||||
|
||||
public void setAppUserName(String appUserName) {
|
||||
this.appUserName = appUserName;
|
||||
}
|
||||
|
||||
public BigDecimal getBalance() {
|
||||
return balance;
|
||||
}
|
||||
|
|
|
@ -100,6 +100,10 @@ public enum BusinessType
|
|||
* 提现
|
||||
*/
|
||||
WITHDRAW,
|
||||
/**
|
||||
* 管理员提现
|
||||
*/
|
||||
ADMINWITHDRAW,
|
||||
|
||||
/**
|
||||
* 预约
|
||||
|
@ -164,4 +168,13 @@ public enum BusinessType
|
|||
*/
|
||||
AUTHENTICATION,
|
||||
|
||||
/**
|
||||
* 换车关锁
|
||||
*/
|
||||
CHANGELOCK,
|
||||
|
||||
/**
|
||||
* 换车开锁
|
||||
*/
|
||||
CHANGEUNLOCK,
|
||||
}
|
||||
|
|
|
@ -90,9 +90,19 @@ public class AsDevice extends BaseEntityPlus implements Serializable {
|
|||
@Excel(name = "定位地址")
|
||||
private String location;
|
||||
|
||||
/** 最后更新时间 */
|
||||
@Excel(name = "最后更新时间")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date lastTime;
|
||||
|
||||
/** 最后定位时间 */
|
||||
@Excel(name = "最后定位时间")
|
||||
private Date lastTime;
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date lastLocationTime;
|
||||
|
||||
/** 是否有GPS信号: 0-没有;1-有 */
|
||||
@Excel(name = "是否有GPS信号")
|
||||
private String gps;
|
||||
|
||||
/** 剩余电量 */
|
||||
@Excel(name = "剩余电量")
|
||||
|
|
|
@ -80,4 +80,8 @@ public class EtCapitalFlow extends BaseEntity
|
|||
@Excel(name = "支付方式")
|
||||
private String payType;
|
||||
|
||||
/** 状态: 0-待结算,2-驳回,8-已完成 */
|
||||
@Excel(name = "状态: 0-待结算,2-驳回,8-已完成")
|
||||
private String status;
|
||||
|
||||
}
|
||||
|
|
|
@ -1,10 +1,8 @@
|
|||
package com.ruoyi.system.domain;
|
||||
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 命令日志对象 et_command_log
|
||||
|
|
|
@ -246,4 +246,12 @@ public class EtOrder extends BaseEntity
|
|||
/** 音频文件 */
|
||||
@Excel(name = "音频文件")
|
||||
private String audioFiles;
|
||||
|
||||
/** 使用过的sn,用,分隔 */
|
||||
@Excel(name = "使用过的sn,用,分隔")
|
||||
private String usedSn;
|
||||
|
||||
/** 换车原因:1-电量过低,2-车辆故障 */
|
||||
@Excel(name = "换车原因:1-电量过低,2-车辆故障")
|
||||
private String changeReason;
|
||||
}
|
||||
|
|
|
@ -37,6 +37,14 @@ public interface SysDeptMapper
|
|||
*/
|
||||
public SysDept selectDeptById(Long deptId);
|
||||
|
||||
/**
|
||||
* 根据app用户id查询信息
|
||||
*
|
||||
* @param appUserId 部门ID
|
||||
* @return 部门信息
|
||||
*/
|
||||
public SysDept selectDeptByAppUserId(Long appUserId);
|
||||
|
||||
/**
|
||||
* 根据ID查询所有子部门
|
||||
*
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
package com.ruoyi.system.service;
|
||||
|
||||
import com.ruoyi.common.core.domain.entity.SysDept;
|
||||
import com.ruoyi.common.core.domain.entity.SysUser;
|
||||
import com.ruoyi.system.domain.EtOperatingArea;
|
||||
import com.ruoyi.system.domain.EtOrder;
|
||||
|
@ -36,6 +37,17 @@ public interface CallbackService {
|
|||
*/
|
||||
public void capitalFlowRecords(EtOrder order, String type, String busType, String ownerType, SysUser user);
|
||||
|
||||
/**
|
||||
* 新增资金流水记录
|
||||
* @param order 订单
|
||||
* @param type 类型
|
||||
* @param busType 业务类型
|
||||
* @param ownerType 所属人类型
|
||||
* @param user 合伙人对象
|
||||
* @return void
|
||||
*/
|
||||
public int capitalFlowRecords2(EtOrder order, String type, String busType, String ownerType, SysDept sysDept);
|
||||
|
||||
/**
|
||||
* 分红处理
|
||||
* @param transactionId 订单号
|
||||
|
|
|
@ -116,6 +116,22 @@ public interface IAsDeviceService extends IService<AsDevice>
|
|||
*/
|
||||
public int oneClickOffline(Long[] deviceIds);
|
||||
|
||||
/**
|
||||
* 一键出仓
|
||||
*
|
||||
* @param deviceIds 需要一键出仓的设备主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
int oneClickListing(Long[] deviceIds);
|
||||
|
||||
/**
|
||||
* 一键入仓
|
||||
*
|
||||
* @param deviceIds 需要一键入仓的设备主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
int oneClickWarehousing(Long[] deviceIds);
|
||||
|
||||
/**
|
||||
* 删除设备信息
|
||||
*
|
||||
|
@ -151,7 +167,7 @@ public interface IAsDeviceService extends IService<AsDevice>
|
|||
/**
|
||||
* 发送命令
|
||||
*/
|
||||
public void sendCommand(String mac, String token,String command,String type,String orderNo);
|
||||
public void sendCommand(String mac, String token,String command,String type,String orderNo,String userName);
|
||||
|
||||
/**
|
||||
* 发送命令(带响应)
|
||||
|
@ -191,12 +207,12 @@ public interface IAsDeviceService extends IService<AsDevice>
|
|||
/**
|
||||
* 管理员锁车
|
||||
*/
|
||||
Boolean adminLock(String sn);
|
||||
Boolean adminLock(String sn,String userName);
|
||||
|
||||
/**
|
||||
* 管理员锁车
|
||||
*/
|
||||
Boolean adminLockByMac(String mac);
|
||||
Boolean adminLockByMac(String mac,String userName);
|
||||
|
||||
/**
|
||||
* 临时解锁
|
||||
|
@ -221,12 +237,12 @@ public interface IAsDeviceService extends IService<AsDevice>
|
|||
/**
|
||||
* 管理员开锁
|
||||
*/
|
||||
Boolean unlocking(String sn);
|
||||
Boolean unlocking(String sn,String userName);
|
||||
|
||||
/**
|
||||
* 管理员开锁
|
||||
*/
|
||||
Boolean unlockingByMac(String mac);
|
||||
Boolean unlockingByMac(String mac,String userName);
|
||||
|
||||
/**
|
||||
* 车辆上线
|
||||
|
|
|
@ -201,4 +201,19 @@ public interface IEtOrderService
|
|||
* 官方审核通过
|
||||
*/
|
||||
boolean authoritypass(EtOrder etOrder);
|
||||
|
||||
/**
|
||||
* 换车关锁
|
||||
*/
|
||||
Boolean changeVehicleLock(String orderNo,String changeReason);
|
||||
|
||||
/**
|
||||
* 换车开锁
|
||||
*/
|
||||
Boolean changeVehicleLockUnlocking(String orderNo,String newSn);
|
||||
|
||||
/**
|
||||
* 押金订单
|
||||
*/
|
||||
EtOrder getDepositOrder(Long userId);
|
||||
}
|
||||
|
|
|
@ -4,6 +4,7 @@ import java.math.BigDecimal;
|
|||
import java.util.List;
|
||||
import com.ruoyi.common.core.domain.TreeSelect;
|
||||
import com.ruoyi.common.core.domain.entity.SysDept;
|
||||
import com.ruoyi.common.core.domain.entity.SysUser;
|
||||
|
||||
/**
|
||||
* 部门管理 服务层
|
||||
|
@ -60,6 +61,14 @@ public interface ISysDeptService
|
|||
*/
|
||||
public SysDept selectDeptById(Long deptId);
|
||||
|
||||
/**
|
||||
* 根据app用户id查询信息
|
||||
*
|
||||
* @param appUserId app用户id
|
||||
* @return 部门信息
|
||||
*/
|
||||
public SysDept selectDeptByAppUserId(Long appUserId);
|
||||
|
||||
/**
|
||||
* 根据ID查询所有子部门(正常状态)
|
||||
*
|
||||
|
@ -137,4 +146,19 @@ public interface ISysDeptService
|
|||
* @return 结果
|
||||
*/
|
||||
void changeDeptBalance(BigDecimal negate, Long deptId);
|
||||
|
||||
/**
|
||||
* 管理员提现
|
||||
*/
|
||||
int adminWithdraw(BigDecimal amount,Long appUserId);
|
||||
|
||||
/**
|
||||
* 绑定app用户
|
||||
*/
|
||||
int bandAppUser(SysDept dept);
|
||||
|
||||
/**
|
||||
* 管理员提现失败
|
||||
*/
|
||||
int rejectWithdraw(Long flowId);
|
||||
}
|
||||
|
|
|
@ -381,6 +381,27 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
|||
return asDeviceMapper.oneClickOnline(deviceIds);
|
||||
}
|
||||
|
||||
/**
|
||||
* 一键出仓
|
||||
*
|
||||
* @param deviceIds 需要一键出仓的设备主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int oneClickListing(Long[] deviceIds)
|
||||
{
|
||||
for (Long deviceId:deviceIds) {
|
||||
AsDevice device = asDeviceMapper.selectAsDeviceByDeviceId(deviceId);
|
||||
if(ObjectUtil.isNull(device)){
|
||||
throw new ServiceException("车辆【"+deviceId+"】不存在");
|
||||
}
|
||||
if(!device.getStatus().equals(ServiceConstants.VEHICLE_STATUS_NOT_LISTING)){
|
||||
throw new ServiceException("车辆【"+device.getSn()+"】非仓库中状态,请重新选择!");
|
||||
}
|
||||
}
|
||||
return asDeviceMapper.oneClickOnline(deviceIds);
|
||||
}
|
||||
|
||||
/**
|
||||
* 一键下线
|
||||
*
|
||||
|
@ -414,6 +435,39 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
|||
return asDeviceMapper.oneClickOffline(deviceIds);
|
||||
}
|
||||
|
||||
/**
|
||||
* 一键入仓
|
||||
*
|
||||
* @param deviceIds 需要一键入仓的设备主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int oneClickWarehousing(Long[] deviceIds)
|
||||
{
|
||||
for (Long deviceId:deviceIds) {
|
||||
AsDevice device = asDeviceMapper.selectAsDeviceByDeviceId(deviceId);
|
||||
if(ObjectUtil.isNull(device)){
|
||||
throw new ServiceException("车辆【"+deviceId+"】不存在");
|
||||
}
|
||||
if(device.getStatus().equals(ServiceConstants.VEHICLE_STATUS_IN_APPOINTMENT)){
|
||||
throw new ServiceException("车辆【"+device.getSn()+"】为‘预约中’状态不能入仓");
|
||||
}
|
||||
if(device.getStatus().equals(ServiceConstants.VEHICLE_STATUS_IN_USING)){
|
||||
throw new ServiceException("车辆【"+device.getSn()+"】为‘使用中’状态不能入仓");
|
||||
}
|
||||
if(device.getStatus().equals(ServiceConstants.VEHICLE_STATUS_TEMPORARILY_LOCK)){
|
||||
throw new ServiceException("车辆【"+device.getSn()+"】为‘临时停车’状态不能入仓");
|
||||
}
|
||||
if(device.getStatus().equals(ServiceConstants.VEHICLE_STATUS_NOT_LISTING)){
|
||||
throw new ServiceException("车辆【"+device.getSn()+"】为‘仓库中’状态不能入仓");
|
||||
}
|
||||
if(device.getStatus().equals(ServiceConstants.VEHICLE_STATUS_ABANDON)){
|
||||
throw new ServiceException("车辆【"+device.getSn()+"】为‘废弃’状态不能入仓");
|
||||
}
|
||||
}
|
||||
return asDeviceMapper.oneClickOffline(deviceIds);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除设备信息
|
||||
*
|
||||
|
@ -550,7 +604,7 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
|||
deviceNumVo.setInAppointmentNum(inAppointmentNum);//预约中
|
||||
|
||||
QueryWrapper<AsDevice> wrapperForDispatch = new QueryWrapper<>();
|
||||
wrapperForDispatch.or(i -> i.eq("in_parking_area", 1).or().eq("in_operating_area", 1));
|
||||
wrapperForDispatch.eq("status","6");
|
||||
if(StrUtil.isNotBlank(powerStart) && StrUtil.isNotBlank(powerEnd)){
|
||||
wrapperForDispatch.between("remaining_power", Integer.parseInt(powerStart),Integer.parseInt(powerEnd));
|
||||
}
|
||||
|
@ -677,13 +731,13 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
|||
*/
|
||||
@SneakyThrows
|
||||
@Override
|
||||
public Boolean unlocking(String sn) {
|
||||
public Boolean unlocking(String sn,String userName) {
|
||||
AsDevice asDevice = asDeviceMapper.selectAsDeviceBySn(sn);
|
||||
/** 1.获取token*/
|
||||
String token = Token.getToken();
|
||||
Boolean execute = transactionTemplate.execute(e -> {
|
||||
/** 2.发送命令*/
|
||||
sendCommand(asDevice.getMac(), token,IotConstants.COMMAND_OPEN+IotConstants.COMMAND_FREQUENCY_20,"管理员开锁",null);
|
||||
sendCommand(asDevice.getMac(), token,IotConstants.COMMAND_OPEN+IotConstants.COMMAND_FREQUENCY_20,"管理员开锁",null,userName);
|
||||
asDevice.setIsAdminUnlocking("1");
|
||||
asDevice.setStatus(ServiceConstants.VEHICLE_STATUS_SCHEDULING);
|
||||
asDevice.setLockStatus(ServiceConstants.LOCK_STATUS_OPEN);
|
||||
|
@ -702,13 +756,13 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
|||
*/
|
||||
@SneakyThrows
|
||||
@Override
|
||||
public Boolean unlockingByMac(String mac) {
|
||||
public Boolean unlockingByMac(String mac,String userName) {
|
||||
AsDevice asDevice = asDeviceMapper.selectAsDeviceByMac(mac);
|
||||
/** 1.获取token*/
|
||||
String token = Token.getToken();
|
||||
Boolean execute = transactionTemplate.execute(e -> {
|
||||
/** 2.发送命令*/
|
||||
sendCommand(mac, token,IotConstants.COMMAND_OPEN+IotConstants.COMMAND_FREQUENCY_20,"管理员开锁",null);
|
||||
sendCommand(mac, token,IotConstants.COMMAND_OPEN+IotConstants.COMMAND_FREQUENCY_20,"管理员开锁",null,userName);
|
||||
asDevice.setIsAdminUnlocking("1");
|
||||
asDevice.setStatus(ServiceConstants.VEHICLE_STATUS_SCHEDULING);
|
||||
asDevice.setLockStatus(ServiceConstants.LOCK_STATUS_OPEN);
|
||||
|
@ -848,14 +902,14 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
|||
@Transactional
|
||||
@Override
|
||||
/** 发送命令*/
|
||||
public void sendCommand(String mac, String token,String command,String type,String orderNo) {
|
||||
public void sendCommand(String mac, String token,String command,String type,String orderNo,String userName) {
|
||||
String param = "device_name=" + mac + "&product_id=" + productId +"&timeout=" + timeout;
|
||||
String sendUrl = iotUrl+ IotConstants.ADDS_COMMAND + "?"+param;
|
||||
String result = HttpUtils.sendPostWithToken(sendUrl, command, token);
|
||||
log.info("【"+type+"】===>IOT请求调用结果:【{}】",result);
|
||||
JSONObject paramsObj = JSON.parseObject(result);
|
||||
String code = paramsObj.getString("code");
|
||||
asynchronousSaveLog(sendUrl,command,mac,result,type,orderNo);
|
||||
asynchronousSaveLog(sendUrl,command,mac,result,type,orderNo,userName);
|
||||
//记录命令
|
||||
if (!HttpStatus.IOT_SUCCESS.equals(code))
|
||||
{
|
||||
|
@ -892,7 +946,7 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
|||
}
|
||||
|
||||
/* 异步保存发送命令日志*/
|
||||
private void asynchronousSaveLog(String url,String command,String mac,String result,String type,String orderNo) {
|
||||
private void asynchronousSaveLog(String url,String command,String mac,String result,String type,String orderNo,String userName) {
|
||||
//异步保存发送命令日志
|
||||
scheduledExecutorService.schedule(() -> {
|
||||
EtCommandLog etCommandLog = new EtCommandLog();
|
||||
|
@ -910,6 +964,7 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
|||
String code = paramsObj.getString("code");
|
||||
etCommandLog.setCallStatus(code);
|
||||
etCommandLog.setOrderNo(orderNo);
|
||||
etCommandLog.setCreateBy(userName);
|
||||
int i = etCommandLogMapper.insertEtCommandLog(etCommandLog);
|
||||
if(i>0){
|
||||
log.info("【发送命令】异步保存发送命令日志");
|
||||
|
@ -928,7 +983,7 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
|||
if(responseVo.getCode() != 0){
|
||||
asynchronousUpdateOnlineStatus(mac);
|
||||
}
|
||||
asynchronousSaveLog(sendUrl,command,mac,result,type,orderNo);
|
||||
asynchronousSaveLog(sendUrl,command,mac,result,type,orderNo,null);
|
||||
return JSON.parseObject(result,ResponseVo.class);
|
||||
}
|
||||
|
||||
|
@ -955,7 +1010,7 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
|||
String token = Token.getToken();
|
||||
Boolean execute = transactionTemplate.execute(e -> {
|
||||
/** 2.发送命令*/
|
||||
sendCommand(asDevice.getMac(), token,IotConstants.COMMAND_PLAY1,"响铃寻车",null);
|
||||
sendCommand(asDevice.getMac(), token,IotConstants.COMMAND_PLAY1,"响铃寻车",null,null);
|
||||
return Boolean.TRUE;
|
||||
});
|
||||
if(!execute)throw new ServiceException("响铃寻车失败");
|
||||
|
@ -975,7 +1030,7 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
|||
String token = Token.getToken();
|
||||
Boolean execute = transactionTemplate.execute(e -> {
|
||||
/** 2.发送命令*/
|
||||
sendCommand(asDevice.getMac(), token,IotConstants.COMMAND_PLAY1,"重启设备",null);
|
||||
sendCommand(asDevice.getMac(), token,IotConstants.COMMAND_PLAY1,"重启设备",null,null);
|
||||
return Boolean.TRUE;
|
||||
});
|
||||
if(!execute)throw new ServiceException("重启设备失败");
|
||||
|
@ -994,7 +1049,7 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
|||
String token = Token.getToken();
|
||||
Boolean execute = transactionTemplate.execute(e -> {
|
||||
/** 2.发送命令*/
|
||||
sendCommand(mac, token,IotConstants.COMMAND_REBOOT,"重启设备",null);
|
||||
sendCommand(mac, token,IotConstants.COMMAND_REBOOT,"重启设备",null,null);
|
||||
return Boolean.TRUE;
|
||||
});
|
||||
if(!execute)throw new ServiceException("重启设备失败");
|
||||
|
@ -1013,7 +1068,7 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
|||
String token = Token.getToken();
|
||||
Boolean execute = transactionTemplate.execute(e -> {
|
||||
/** 2.发送命令*/
|
||||
sendCommand(mac, token,IotConstants.COMMAND_PLAY1,"响铃寻车",null);
|
||||
sendCommand(mac, token,IotConstants.COMMAND_PLAY1,"响铃寻车",null,null);
|
||||
return Boolean.TRUE;
|
||||
});
|
||||
if(!execute)throw new ServiceException("响铃寻车失败");
|
||||
|
@ -1038,7 +1093,7 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
|||
String token = Token.getToken();
|
||||
if(!"true".equals(isBluetooth)){
|
||||
/** 2.发送命令*/
|
||||
sendCommand(asDevice.getMac(), token,IotConstants.COMMAND_LLOSE+IotConstants.COMMAND_FREQUENCY_3600,"临时锁车",orderNo);
|
||||
sendCommand(asDevice.getMac(), token,IotConstants.COMMAND_LLOSE+IotConstants.COMMAND_FREQUENCY_3600,"临时锁车",orderNo,order.getUserName());
|
||||
}else{
|
||||
asDevice.setLongitude(lon);
|
||||
asDevice.setLatitude(lat);
|
||||
|
@ -1071,11 +1126,11 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
|||
@Transactional
|
||||
@SneakyThrows
|
||||
@Override
|
||||
public Boolean adminLock(String sn) {
|
||||
public Boolean adminLock(String sn,String userName) {
|
||||
if(StrUtil.isBlank(sn))throw new ServiceException("sn不能为空");
|
||||
AsDevice asDevice = asDeviceMapper.selectAsDeviceBySn(sn);
|
||||
/** 2.发送命令*/
|
||||
sendCommand(asDevice.getMac(), Token.getToken(),IotConstants.COMMAND_CLOSE+IotConstants.COMMAND_FREQUENCY_3600,"管理员锁车",null);
|
||||
sendCommand(asDevice.getMac(), Token.getToken(),IotConstants.COMMAND_CLOSE+IotConstants.COMMAND_FREQUENCY_3600,"管理员锁车",null,userName);
|
||||
asDevice.setLockStatus(ServiceConstants.LOCK_STATUS_CLOSE);
|
||||
asDevice.setStatus(ServiceConstants.VEHICLE_STATUS_NORMAL);
|
||||
asDevice.setIsAdminUnlocking("0");
|
||||
|
@ -1095,11 +1150,11 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
|||
@Transactional
|
||||
@SneakyThrows
|
||||
@Override
|
||||
public Boolean adminLockByMac(String mac) {
|
||||
public Boolean adminLockByMac(String mac,String userName) {
|
||||
if(StrUtil.isBlank(mac))throw new ServiceException("mac不能为空");
|
||||
AsDevice asDevice = asDeviceMapper.selectAsDeviceByMac(mac);
|
||||
/** 2.发送命令*/
|
||||
sendCommand(asDevice.getMac(), Token.getToken(),IotConstants.COMMAND_CLOSE+IotConstants.COMMAND_FREQUENCY_3600,"管理员锁车",null);
|
||||
sendCommand(asDevice.getMac(), Token.getToken(),IotConstants.COMMAND_CLOSE+IotConstants.COMMAND_FREQUENCY_3600,"管理员锁车",null,userName);
|
||||
asDevice.setLockStatus(ServiceConstants.LOCK_STATUS_CLOSE);
|
||||
asDevice.setStatus(ServiceConstants.VEHICLE_STATUS_NORMAL);
|
||||
asDevice.setIsAdminUnlocking("0");
|
||||
|
@ -1129,7 +1184,7 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
|||
String finalSn = sn;
|
||||
if(!"true".equals(isBluetooth)){
|
||||
/** 2.发送命令*/
|
||||
sendCommand(asDevice.getMac(), token,IotConstants.COMMAND_OPEN+IotConstants.COMMAND_FREQUENCY_5,"临时解锁",orderNo);
|
||||
sendCommand(asDevice.getMac(), token,IotConstants.COMMAND_OPEN+IotConstants.COMMAND_FREQUENCY_5,"临时解锁",orderNo,order.getUserName());
|
||||
}else{
|
||||
asDevice.setLongitude(lon);
|
||||
asDevice.setLatitude(lat);
|
||||
|
@ -1883,9 +1938,11 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
|||
.set("latitude",device.getLatitude())
|
||||
.set("remaining_power",device.getRemainingPower())
|
||||
.set("last_time",device.getLastTime())
|
||||
.set("last_location_time",device.getLastLocationTime())
|
||||
.set("voltage",device.getVoltage())
|
||||
.set("satellites",device.getSatellites())
|
||||
.set("quality",device.getQuality())
|
||||
.set("gps",device.getGps())
|
||||
.set("signal_strength",device.getSignalStrength());
|
||||
return asDeviceMapper.update(null,wrapper);
|
||||
}
|
||||
|
|
|
@ -622,6 +622,56 @@ public class CallbackServiceImpl implements CallbackService {
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 资金流水记录
|
||||
* */
|
||||
@Override
|
||||
public int capitalFlowRecords2(EtOrder order,String type,String busType,String ownerType,SysDept sysDept) {
|
||||
EtCapitalFlow capitalFlow = new EtCapitalFlow();
|
||||
capitalFlow.setAreaId(order.getAreaId());
|
||||
capitalFlow.setOrderNo(order.getOrderNo());
|
||||
capitalFlow.setOutTradeNo(order.getOutTradeNo());
|
||||
capitalFlow.setType(type);
|
||||
capitalFlow.setBusType(busType);
|
||||
capitalFlow.setOwnerType(ownerType);
|
||||
capitalFlow.setOwnerId(sysDept.getDeptId());
|
||||
capitalFlow.setOwner(sysDept.getDeptName());
|
||||
capitalFlow.setAmount(order.getPayFee());
|
||||
|
||||
String handlingCharge1 = sysDept.getHandlingCharge();
|
||||
logger.info("【保存资金流水记录】 获取到配置手续费==============handlingCharge=====================:"+handlingCharge1);
|
||||
BigDecimal bigDecimal = new BigDecimal(handlingCharge1).divide(new BigDecimal(1000), 6, BigDecimal.ROUND_HALF_UP);
|
||||
logger.info("【保存资金流水记录】 转换后手续费==============bigDecimal=====================:"+bigDecimal);
|
||||
BigDecimal handlingCharge = bigDecimal.multiply(order.getPayFee()).setScale(2, BigDecimal.ROUND_HALF_UP);
|
||||
logger.info("【保存资金流水记录】 计算出的手续费==============handlingCharge=====================:"+handlingCharge);
|
||||
BigDecimal serviceFeeScale = new BigDecimal(sysDept.getPlatformServiceFee()).divide(new BigDecimal(100), 6, BigDecimal.ROUND_HALF_UP);
|
||||
BigDecimal platformServiceFee = serviceFeeScale.multiply(order.getPayFee());
|
||||
logger.info("【保存资金流水记录】 计算出的平台服务费==============platformServiceFee=====================:"+platformServiceFee);
|
||||
capitalFlow.setPlatformServiceFee(platformServiceFee);
|
||||
capitalFlow.setHandlingCharge(handlingCharge);//手续费
|
||||
BigDecimal separateAccountFee = order.getPayFee();
|
||||
capitalFlow.setPartnerDividend(BigDecimal.ZERO);
|
||||
capitalFlow.setPlatformServiceFee(BigDecimal.ZERO);
|
||||
if(type.equals(ServiceConstants.FLOW_TYPE_INCOME)){
|
||||
capitalFlow.setStatus(ServiceConstants.FLOW_STATUS_REJECT);
|
||||
capitalFlow.setOperatorDividend(separateAccountFee);
|
||||
capitalFlow.setOperatorBalance(sysDept.getBalance().add(separateAccountFee));
|
||||
deptService.changeDeptBalance(separateAccountFee,sysDept.getDeptId());
|
||||
logger.info("【保存资金流水记录】 ==============收入=====================:");
|
||||
}else{
|
||||
capitalFlow.setStatus(ServiceConstants.FLOW_STATUS_APPLY);
|
||||
capitalFlow.setOperatorDividend(separateAccountFee.negate());
|
||||
capitalFlow.setOperatorBalance(sysDept.getBalance().subtract(separateAccountFee));
|
||||
deptService.changeDeptBalance(separateAccountFee.negate(),sysDept.getDeptId());
|
||||
logger.info("【保存资金流水记录】 ==============支出=====================:");
|
||||
}
|
||||
capitalFlow.setPayType(ServiceConstants.PAY_TYPE_WX);
|
||||
capitalFlow.setCreateTime(DateUtils.getNowDate());
|
||||
logger.info("【保存资金流水】保存资金流水记录对象 : " + JSON.toJSONString(capitalFlow));
|
||||
int i = etCapitalFlowService.insertEtCapitalFlow(capitalFlow);
|
||||
return i;
|
||||
}
|
||||
|
||||
/**
|
||||
* 微信退款回调
|
||||
*/
|
||||
|
|
|
@ -137,7 +137,7 @@ public class EtModelServiceImpl implements IEtModelService
|
|||
Integer quantityByPercentage = CommonUtil.getElectricQuantityByPercentage(lowBatteryReminder, etModel.getFullVoltage(), etModel.getLowVoltage());
|
||||
String lowVoltageCommand = IotConstants.COMMAND_BAT + quantityByPercentage * 10 + "@";
|
||||
log.info("发送低电压命令:" + lowVoltageCommand);
|
||||
asDeviceService.sendCommand(asDevice.getMac(), Token.getToken(), lowVoltageCommand,"发送低电压播报",null);
|
||||
asDeviceService.sendCommand(asDevice.getMac(), Token.getToken(), lowVoltageCommand,"发送低电压播报",null,null);
|
||||
}
|
||||
}
|
||||
return i;
|
||||
|
|
|
@ -5,6 +5,7 @@ import cn.hutool.core.util.StrUtil;
|
|||
import com.alibaba.fastjson2.JSON;
|
||||
import com.ruoyi.common.annotation.DataScope;
|
||||
import com.ruoyi.common.constant.Constants;
|
||||
import com.ruoyi.common.constant.IotConstants;
|
||||
import com.ruoyi.common.constant.ServiceConstants;
|
||||
import com.ruoyi.common.core.domain.entity.AsUser;
|
||||
import com.ruoyi.common.core.domain.entity.SysDept;
|
||||
|
@ -12,6 +13,7 @@ import com.ruoyi.common.exception.ServiceException;
|
|||
import com.ruoyi.common.utils.CommonUtil;
|
||||
import com.ruoyi.common.utils.DateUtils;
|
||||
import com.ruoyi.common.utils.PageUtils;
|
||||
import com.ruoyi.common.utils.onenet.Token;
|
||||
import com.ruoyi.common.utils.uuid.IdUtils;
|
||||
import com.ruoyi.system.domain.*;
|
||||
import com.ruoyi.system.domain.vo.*;
|
||||
|
@ -32,6 +34,7 @@ import org.springframework.stereotype.Service;
|
|||
import org.springframework.transaction.annotation.Transactional;
|
||||
import org.springframework.transaction.support.TransactionSynchronizationAdapter;
|
||||
import org.springframework.transaction.support.TransactionSynchronizationManager;
|
||||
import org.springframework.transaction.support.TransactionTemplate;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
|
@ -95,6 +98,9 @@ public class EtOrderServiceImpl implements IEtOrderService
|
|||
@Resource
|
||||
private EtRefundMapper etRefundMapper;
|
||||
|
||||
@Autowired
|
||||
private TransactionTemplate transactionTemplate;
|
||||
|
||||
/**
|
||||
* 查询订单
|
||||
*
|
||||
|
@ -444,15 +450,15 @@ public class EtOrderServiceImpl implements IEtOrderService
|
|||
/** 2.退押金*/
|
||||
EtOrder depositOrder = getDepositOrder(etOrder.getUserId());
|
||||
BigDecimal deposit = depositOrder.getTotalFee();
|
||||
// Refund refund = wxPayService.refund(depositOrder, "还车审核通过后退押金",deposit,IdUtils.getOrderNo("ref"));
|
||||
Refund refund = wxPayService.refund(depositOrder, "还车审核通过后退押金",deposit,IdUtils.getOrderNo("ref"));
|
||||
/** 3.记录退款表 创建退款对象*/
|
||||
// depositOrder.setReason("还车审核通过后退押金");
|
||||
// EtRefund refund1= createRefund(depositOrder, deposit, null, null, null, null, refund.getOutRefundNo(),ServiceConstants.REFUND_TYPE_DEPOSIT);
|
||||
// int i = etRefundService.insertEtRefund(refund1);
|
||||
// if(i == 0){
|
||||
// log.info("【还车审核通过】保存退款对象失败");
|
||||
// throw new ServiceException("【还车审核通过】,保存退款对象失败");
|
||||
// }
|
||||
depositOrder.setReason("还车审核通过后退押金");
|
||||
EtRefund refund1= createRefund(depositOrder, deposit, null, null, null, null, refund.getOutRefundNo(),ServiceConstants.REFUND_TYPE_DEPOSIT);
|
||||
int i = etRefundService.insertEtRefund(refund1);
|
||||
if(i == 0){
|
||||
log.info("【还车审核通过】保存退款对象失败");
|
||||
throw new ServiceException("【还车审核通过】,保存退款对象失败");
|
||||
}
|
||||
/** 4.更新用户余额*/
|
||||
AsUser asUser = asUserService.selectUserById(depositOrder.getUserId());
|
||||
if(asUser!=null){
|
||||
|
@ -507,11 +513,11 @@ public class EtOrderServiceImpl implements IEtOrderService
|
|||
throw new ServiceException("【还车审核通过】,更新用户信息失败");
|
||||
}
|
||||
}
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
private EtOrder getDepositOrder(Long userId) {
|
||||
public EtOrder getDepositOrder(Long userId) {
|
||||
EtOrder depositOrder = new EtOrder();
|
||||
depositOrder.setUserId(userId);
|
||||
depositOrder.setPaid(ServiceConstants.ORDER_PAY_STATUS_PAID);
|
||||
|
@ -1254,4 +1260,89 @@ public class EtOrderServiceImpl implements IEtOrderService
|
|||
List<EtOrder> inOrder = etOrderMapper.isInOrderBySn(sn);
|
||||
return inOrder.size() > 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* 换车关锁
|
||||
* 1. 关锁
|
||||
* 2. 改变订单信息,sn, 保存使用过的sn
|
||||
*
|
||||
*/
|
||||
@Override
|
||||
@Transactional
|
||||
@SneakyThrows
|
||||
public Boolean changeVehicleLock(String orderNo,String changeReason) {
|
||||
EtOrder order = etOrderMapper.selectEtOrderByOrderNo(orderNo);
|
||||
if(!ServiceConstants.ORDER_STATUS_RIDING.equals(order.getStatus())){
|
||||
throw new ServiceException("该订单状态非骑行中");
|
||||
}
|
||||
String sn = order.getSn();
|
||||
if(StrUtil.isBlank(sn))throw new ServiceException("sn不能为空");
|
||||
AsDevice asDevice = asDeviceMapper.selectAsDeviceBySn(sn);
|
||||
/** 2.发送命令*/
|
||||
asDeviceService.sendCommand(asDevice.getMac(), Token.getToken(), IotConstants.COMMAND_CLOSE+IotConstants.COMMAND_FREQUENCY_3600,"换车关锁",order.getOrderNo(),order.getUserName());
|
||||
asDevice.setLockStatus(ServiceConstants.LOCK_STATUS_CLOSE);
|
||||
asDevice.setStatus(ServiceConstants.VEHICLE_STATUS_NORMAL);
|
||||
asDevice.setIsAdminUnlocking("0");
|
||||
int device = asDeviceMapper.updateAsDevice(asDevice);
|
||||
if(device==0){
|
||||
log.info("【临时解锁】改变车辆状态失败");
|
||||
throw new ServiceException("【临时锁车】改变车辆状态失败");
|
||||
}
|
||||
String usedSn = order.getUsedSn();
|
||||
if(StrUtil.isNotBlank(usedSn)){
|
||||
usedSn = usedSn+","+sn;
|
||||
}else{
|
||||
usedSn = sn;
|
||||
}
|
||||
order.setUsedSn(usedSn);
|
||||
order.setSn("");
|
||||
order.setChangeReason(changeReason);
|
||||
int i = etOrderMapper.updateEtOrderByOrderNo(order);
|
||||
if(i==0){
|
||||
log.info("【换车关锁】改变订单使用过的sn失败");
|
||||
throw new ServiceException("【换车关锁】改变订单使用过的sn失败");
|
||||
}
|
||||
return Boolean.TRUE;
|
||||
}
|
||||
|
||||
/**
|
||||
* 换车开锁
|
||||
* 1. 开锁
|
||||
* 2. 更新订单的sn
|
||||
*/
|
||||
@SneakyThrows
|
||||
@Override
|
||||
@Transactional
|
||||
public Boolean changeVehicleLockUnlocking(String orderNo, String newSn) {
|
||||
EtOrder order = etOrderMapper.selectEtOrderByOrderNo(orderNo);
|
||||
if(!ServiceConstants.ORDER_STATUS_RIDING.equals(order.getStatus())){
|
||||
throw new ServiceException("该订单状态非骑行中");
|
||||
}
|
||||
AsDevice newDevice = asDeviceMapper.selectAsDeviceBySn(newSn);
|
||||
if (ObjectUtil.isNull(newDevice)) {
|
||||
throw new ServiceException("设备不存在:"+ newSn);
|
||||
}
|
||||
/** 1.获取token*/
|
||||
String token = Token.getToken();
|
||||
Boolean execute = transactionTemplate.execute(e -> {
|
||||
/** 2.发送命令*/
|
||||
asDeviceService.sendCommand(newDevice.getMac(), token,IotConstants.COMMAND_OPEN+IotConstants.COMMAND_FREQUENCY_20,"换车开锁",order.getOrderNo(),order.getUserName());
|
||||
newDevice.setIsAdminUnlocking("1");
|
||||
newDevice.setStatus(ServiceConstants.VEHICLE_STATUS_SCHEDULING);
|
||||
newDevice.setLockStatus(ServiceConstants.LOCK_STATUS_OPEN);
|
||||
int i = asDeviceMapper.updateAsDevice(newDevice);
|
||||
if(i>0){
|
||||
log.info("管理员开锁,更新设备状态成功");
|
||||
}
|
||||
return Boolean.TRUE;
|
||||
});
|
||||
if(!execute)throw new ServiceException("换车开锁失败");
|
||||
order.setSn(newSn);
|
||||
int i = etOrderMapper.updateEtOrderByOrderNo(order);
|
||||
if(i==0){
|
||||
log.info("【换车开锁】更新订单sn失败");
|
||||
throw new ServiceException("【换车开锁】更新订单sn失败");
|
||||
}
|
||||
return Boolean.TRUE;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
package com.ruoyi.system.service.impl;
|
||||
|
||||
import cn.hutool.core.util.ObjectUtil;
|
||||
import cn.hutool.core.util.StrUtil;
|
||||
import com.alibaba.fastjson2.JSON;
|
||||
import com.ruoyi.common.annotation.DataScope;
|
||||
|
@ -16,14 +17,16 @@ import com.ruoyi.common.utils.DateUtils;
|
|||
import com.ruoyi.common.utils.SecurityUtils;
|
||||
import com.ruoyi.common.utils.StringUtils;
|
||||
import com.ruoyi.common.utils.spring.SpringUtils;
|
||||
import com.ruoyi.common.utils.uuid.IdUtils;
|
||||
import com.ruoyi.system.domain.EtAreaDept;
|
||||
import com.ruoyi.system.domain.EtCapitalFlow;
|
||||
import com.ruoyi.system.domain.EtOrder;
|
||||
import com.ruoyi.system.domain.SysUserRole;
|
||||
import com.ruoyi.system.mapper.*;
|
||||
import com.ruoyi.system.service.ISysConfigService;
|
||||
import com.ruoyi.system.service.ISysDeptService;
|
||||
import com.ruoyi.system.service.IWxPayService;
|
||||
import com.ruoyi.system.service.*;
|
||||
import com.wechat.pay.java.service.profitsharing.model.AddReceiverResponse;
|
||||
import com.wechat.pay.java.service.profitsharing.model.DeleteReceiverResponse;
|
||||
import com.wechat.pay.java.service.transferbatch.model.TransferDetailInput;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
@ -45,10 +48,10 @@ import java.util.stream.Collectors;
|
|||
@Service
|
||||
public class SysDeptServiceImpl implements ISysDeptService
|
||||
{
|
||||
@Autowired
|
||||
@Resource
|
||||
private SysDeptMapper deptMapper;
|
||||
|
||||
@Autowired
|
||||
@Resource
|
||||
private SysRoleMapper roleMapper;
|
||||
|
||||
@Resource
|
||||
|
@ -60,12 +63,24 @@ public class SysDeptServiceImpl implements ISysDeptService
|
|||
@Autowired
|
||||
private ISysConfigService configService;
|
||||
|
||||
@Autowired
|
||||
@Resource
|
||||
private SysUserRoleMapper userRoleMapper;
|
||||
|
||||
@Autowired
|
||||
private IWxPayService wxPayService;
|
||||
|
||||
@Autowired
|
||||
private IAsUserService asUserService;
|
||||
|
||||
@Resource
|
||||
private IEtOperatingAreaService etOperatingAreaService;
|
||||
|
||||
@Autowired
|
||||
private CallbackService callbackService;
|
||||
|
||||
@Resource
|
||||
private EtCapitalFlowMapper etCapitalFlowMapper;
|
||||
|
||||
/**
|
||||
* 查询部门管理数据
|
||||
*
|
||||
|
@ -157,6 +172,18 @@ public class SysDeptServiceImpl implements ISysDeptService
|
|||
return deptMapper.selectDeptById(deptId);
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据app用户id查询信息
|
||||
*
|
||||
* @param appUserId app用户id
|
||||
* @return 部门信息
|
||||
*/
|
||||
@Override
|
||||
public SysDept selectDeptByAppUserId(Long appUserId)
|
||||
{
|
||||
return deptMapper.selectDeptByAppUserId(appUserId);
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据ID查询所有子部门(正常状态)
|
||||
*
|
||||
|
@ -428,6 +455,81 @@ public class SysDeptServiceImpl implements ISysDeptService
|
|||
deptMapper.changeDeptBalance(amount,deptId);
|
||||
}
|
||||
|
||||
/**
|
||||
* 管理员提现
|
||||
* 1. 获取当前用户
|
||||
* 2. 获取最新用户
|
||||
* 3. 获取部门对象
|
||||
* 4. 发起提现
|
||||
* -- 5. 更新部门余额(默认通过,直接扣余额)
|
||||
* 6. 记录资金流水
|
||||
*/
|
||||
@Override
|
||||
public int adminWithdraw(BigDecimal amount,Long appUserId) {
|
||||
String orderNo = IdUtils.getOrderNo("tx");
|
||||
SysDept sysDept = deptMapper.selectDeptByAppUserId(appUserId);
|
||||
AsUser asUser1 = asUserService.selectUserById(appUserId);
|
||||
log.info("【管理员提现】获取到运营商信息:【{}】", JSON.toJSON(sysDept));
|
||||
if(ObjectUtil.isNull(sysDept)){
|
||||
throw new RuntimeException("运营商未绑定app用户,请联系管理员添加【绑定微信用户】");
|
||||
}
|
||||
String batchName= sysDept.getDeptName()+"发起提现";
|
||||
List<TransferDetailInput> transferDetailInputs = new ArrayList<>();
|
||||
TransferDetailInput transferDetailInput = new TransferDetailInput();
|
||||
transferDetailInput.setOutDetailNo(IdUtils.getOrderNo("txd"));//明细订单号
|
||||
transferDetailInput.setTransferAmount(amount.multiply(new BigDecimal(100)).longValue());
|
||||
transferDetailInput.setTransferRemark(sysDept.getDeptName()+"共享电动车提现");
|
||||
transferDetailInput.setOpenid(asUser1.getWxopenid());
|
||||
transferDetailInputs.add(transferDetailInput);
|
||||
log.info("【审核通过】发起转账到零钱:{}",JSON.toJSONString(transferDetailInputs));
|
||||
// todo 暂时先不发起真实提现 真正的提现是
|
||||
// wxPayService.transfer(sysDept,orderNo,batchName,batchName,amount,1,transferDetailInputs);
|
||||
//扣余额并记录资金流水
|
||||
EtOrder order = new EtOrder();
|
||||
order.setOrderNo(orderNo);
|
||||
order.setPayFee(amount);
|
||||
order.setTotalFee(amount);
|
||||
List<Long> longs = etOperatingAreaService.selectAreaListByDeptId(sysDept.getDeptId());
|
||||
if(longs.size() == 0){
|
||||
throw new ServiceException("【提现】提现失败,未找到该运营区,运营商id:"+sysDept.getDeptId());
|
||||
}
|
||||
order.setAreaId(longs.get(0));
|
||||
//记录资金流水
|
||||
return callbackService.capitalFlowRecords2(order,ServiceConstants.FLOW_TYPE_DISBURSE,ServiceConstants.ORDER_TYPE_WITHDRAW,ServiceConstants.OWNER_TYPE_OPERATOR,sysDept);
|
||||
}
|
||||
|
||||
/**
|
||||
* 管理员提现失败
|
||||
* 1. 生成一条相同的金额
|
||||
* 2.
|
||||
*/
|
||||
@Override
|
||||
public int rejectWithdraw(Long flowId) {
|
||||
EtCapitalFlow etCapitalFlow = etCapitalFlowMapper.selectEtCapitalFlowByFlowId(flowId);
|
||||
SysDept sysDept = deptMapper.selectDeptById(etCapitalFlow.getOwnerId());
|
||||
log.info("【提现失败】获取到提现流水信息:【{}】", JSON.toJSON(etCapitalFlow));
|
||||
EtOrder order = new EtOrder();
|
||||
order.setOrderNo(etCapitalFlow.getOrderNo());
|
||||
order.setPayFee(etCapitalFlow.getAmount());
|
||||
order.setTotalFee(etCapitalFlow.getAmount());
|
||||
List<Long> longs = etOperatingAreaService.selectAreaListByDeptId(etCapitalFlow.getOwnerId());
|
||||
if(longs.size() == 0){
|
||||
throw new ServiceException("【管理员提现失败】提现失败,未找到该运营区,运营商id:"+etCapitalFlow.getOwnerId());
|
||||
}
|
||||
order.setAreaId(longs.get(0));
|
||||
//记录资金流水
|
||||
int i = callbackService.capitalFlowRecords2(order, ServiceConstants.FLOW_TYPE_INCOME, ServiceConstants.ORDER_TYPE_WITHDRAW_FAIL, ServiceConstants.OWNER_TYPE_OPERATOR, sysDept);
|
||||
if(i>0){
|
||||
etCapitalFlow.setStatus(ServiceConstants.FLOW_STATUS_COMPLETE);
|
||||
if(etCapitalFlowMapper.updateEtCapitalFlow(etCapitalFlow) ==0){
|
||||
throw new ServiceException("【管理员提现失败】提现失败,更新资金流水表失败");
|
||||
}
|
||||
}else{
|
||||
throw new ServiceException("【管理员提现失败】提现失败,插入资金流水失败");
|
||||
}
|
||||
return i;
|
||||
}
|
||||
|
||||
/**
|
||||
* 递归列表
|
||||
*/
|
||||
|
@ -470,4 +572,12 @@ public class SysDeptServiceImpl implements ISysDeptService
|
|||
{
|
||||
return getChildList(list, t).size() > 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* 绑定app用户
|
||||
*/
|
||||
@Override
|
||||
public int bandAppUser(SysDept dept) {
|
||||
return deptMapper.updateDept(dept);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -87,6 +87,9 @@ public class SysUserServiceImpl implements ISysUserService
|
|||
@Autowired
|
||||
private RedisCache redisCache;
|
||||
|
||||
@Resource
|
||||
private AsUserMapper asUserMapper;
|
||||
|
||||
|
||||
/**
|
||||
* 根据条件分页查询用户列表
|
||||
|
@ -108,6 +111,13 @@ public class SysUserServiceImpl implements ISysUserService
|
|||
sysUser.setAreaName(area.getAreaName());
|
||||
}
|
||||
}
|
||||
Long appUserId = sysUser.getAppUserId();
|
||||
if(ObjectUtil.isNotNull(appUserId) && appUserId!=0){
|
||||
AsUser asUser = asUserMapper.selectUserById(appUserId);
|
||||
if(ObjectUtil.isNotNull(asUser)){
|
||||
sysUser.setAppUserName(asUser.getUserName());
|
||||
}
|
||||
}
|
||||
}
|
||||
return sysUsers;
|
||||
}
|
||||
|
|
|
@ -21,6 +21,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="lastTime" column="last_time" />
|
||||
<result property="lastLocationTime" column="last_location_time" />
|
||||
<result property="gps" column="gps" />
|
||||
<result property="remark" column="remark" />
|
||||
<result property="status" column="status" />
|
||||
<result property="lockStatus" column="lock_status" />
|
||||
|
@ -35,13 +37,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
</resultMap>
|
||||
|
||||
<sql id="selectAsDeviceVo">
|
||||
select device_id, picture, device_name, mac, sn, model_id, vehicle_num, area_id, activation_time, online_status, create_by, create_time, update_by, update_time, last_time, remark, status, lock_status, location, remaining_power, voltage, qrcode, longitude, latitude, is_area_out_outage, is_admin_unlocking from et_device
|
||||
select device_id, picture, device_name, mac, sn, model_id, vehicle_num, area_id, activation_time, online_status, create_by, create_time, update_by, update_time, last_time, last_location_time, gps, remark, status, lock_status, location, remaining_power, voltage, qrcode, longitude, latitude, is_area_out_outage, is_admin_unlocking from et_device
|
||||
</sql>
|
||||
|
||||
<select id="selectAsDeviceList" parameterType="AsDevice" resultMap="AsDeviceResult">
|
||||
select de.device_id, de.picture, de.device_name, de.mac, de.sn, de.model_id, de.vehicle_num, de.area_id,
|
||||
de.activation_time, de.online_status, de.create_by, de.create_time, de.update_by,
|
||||
de.update_time, de.last_time, de.remark, de.status, de.lock_status, de.location,
|
||||
de.update_time, de.last_time, de.last_location_time, de.gps, de.remark, de.status, de.lock_status, de.location,
|
||||
de.remaining_power, de.voltage, de.qrcode, de.longitude, de.latitude, de.is_area_out_outage, de.is_admin_unlocking from et_device de
|
||||
left join et_area_dept ad on ad.area_id = de.area_id
|
||||
left join sys_dept d on d.dept_id = ad.dept_id
|
||||
|
@ -63,7 +65,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<select id="selectAsDeviceListWithIsolate" parameterType="AsDevice" resultMap="AsDeviceResult">
|
||||
select de.device_id, de.picture, de.device_name, de.mac, de.sn, de.model_id, de.vehicle_num, de.area_id,
|
||||
de.activation_time, de.online_status, de.create_by, de.create_time, de.update_by,
|
||||
de.update_time, de.last_time, de.remark, de.status, de.lock_status, de.location,
|
||||
de.update_time, de.last_time, de.last_location_time, de.gps, de.remark, de.status, de.lock_status, de.location,
|
||||
de.remaining_power, de.voltage, de.version, de.qrcode, de.longitude, de.latitude, de.is_area_out_outage, de.is_admin_unlocking, de.signal_strength, de.satellites, de.quality from et_device de
|
||||
left join et_area_dept ad on ad.area_id = de.area_id
|
||||
left join sys_dept d on d.dept_id = ad.dept_id
|
||||
|
@ -171,6 +173,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="lastTime != null">last_time,</if>
|
||||
<if test="lastLocationTime != null">last_location_time,</if>
|
||||
<if test="gps != null">gps,</if>
|
||||
<if test="remark != null">remark,</if>
|
||||
<if test="status != null">status,</if>
|
||||
<if test="lockStatus != null">lock_status,</if>
|
||||
|
@ -198,6 +202,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="updateBy != null">#{updateBy},</if>
|
||||
<if test="updateTime != null">#{updateTime},</if>
|
||||
<if test="lastTime != null">#{lastTime},</if>
|
||||
<if test="lastLocationTime != null">#{lastLocationTime},</if>
|
||||
<if test="gps != null">#{gps},</if>
|
||||
<if test="remark != null">#{remark},</if>
|
||||
<if test="status != null">#{status},</if>
|
||||
<if test="lockStatus != null">#{lockStatus},</if>
|
||||
|
@ -229,6 +235,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="lastTime != null">last_time = #{lastTime},</if>
|
||||
<if test="lastLocationTime != null">last_location_time = #{lastLocationTime},</if>
|
||||
<if test="gps != null">gps = #{gps},</if>
|
||||
<if test="remark != null">remark = #{remark},</if>
|
||||
<if test="status != null">status = #{status},</if>
|
||||
<if test="lockStatus != null">lock_status = #{lockStatus},</if>
|
||||
|
@ -262,6 +270,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="lastTime != null">last_time = #{lastTime},</if>
|
||||
<if test="lastLocationTime != null">last_location_time = #{lastLocationTime},</if>
|
||||
<if test="gps != null">gps = #{gps},</if>
|
||||
<if test="remark != null">remark = #{remark},</if>
|
||||
<if test="status != null">status = #{status},</if>
|
||||
<if test="lockStatus != null">lock_status = #{lockStatus},</if>
|
||||
|
@ -294,6 +304,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="lastTime != null">last_time = #{lastTime},</if>
|
||||
<if test="lastLocationTime != null">last_location_time = #{lastLocationTime},</if>
|
||||
<if test="gps != null">gps = #{gps},</if>
|
||||
<if test="remark != null">remark = #{remark},</if>
|
||||
<if test="status != null">status = #{status},</if>
|
||||
<if test="lockStatus != null">lock_status = #{lockStatus},</if>
|
||||
|
|
|
@ -15,6 +15,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<result property="outTradeNo" column="out_trade_no" />
|
||||
<result property="type" column="type" />
|
||||
<result property="busType" column="bus_type" />
|
||||
<result property="status" column="status" />
|
||||
<result property="amount" column="amount" />
|
||||
<result property="handlingCharge" column="handling_charge" />
|
||||
<result property="platformServiceFee" column="platform_service_fee" />
|
||||
|
@ -26,7 +27,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
</resultMap>
|
||||
|
||||
<sql id="selectEtCapitalFlowVo">
|
||||
select flow_id, area_id, order_no, out_trade_no, type, bus_type, amount, handling_charge, platform_service_fee, operator_dividend, operator_balance, partner_dividend, pay_type, create_time from et_capital_flow
|
||||
select flow_id, area_id, owner, owner_id, owner_type, order_no, out_trade_no, type, bus_type, status, amount, handling_charge, platform_service_fee, operator_dividend, operator_balance, partner_dividend, pay_type, create_time from et_capital_flow
|
||||
</sql>
|
||||
|
||||
<select id="selectEtCapitalFlowList" parameterType="EtCapitalFlow" resultMap="EtCapitalFlowResult">
|
||||
|
@ -40,6 +41,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
cf.out_trade_no,
|
||||
cf.type,
|
||||
cf.bus_type,
|
||||
cf.status,
|
||||
cf.amount,
|
||||
cf.handling_charge,
|
||||
cf.platform_service_fee,
|
||||
|
@ -61,6 +63,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="outTradeNo != null and outTradeNo != ''"> and cf.out_trade_no = #{outTradeNo}</if>
|
||||
<if test="type != null and type != ''"> and cf.type = #{type}</if>
|
||||
<if test="busType != null and busType != ''"> and cf.bus_type = #{busType}</if>
|
||||
<if test="status != null and status != ''"> and cf.status = #{status}</if>
|
||||
<if test="amount != null "> and cf.amount = #{amount}</if>
|
||||
<if test="handlingCharge != null "> and cf.handling_charge = #{handlingCharge}</if>
|
||||
<if test="operatorDividend != null "> and cf.operator_dividend = #{operatorDividend}</if>
|
||||
|
@ -99,6 +102,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="outTradeNo != null">out_trade_no,</if>
|
||||
<if test="type != null">type,</if>
|
||||
<if test="busType != null">bus_type,</if>
|
||||
<if test="status != null">status,</if>
|
||||
<if test="amount != null">amount,</if>
|
||||
<if test="handlingCharge != null">handling_charge,</if>
|
||||
<if test="platformServiceFee != null">platform_service_fee,</if>
|
||||
|
@ -118,6 +122,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="outTradeNo != null">#{outTradeNo},</if>
|
||||
<if test="type != null">#{type},</if>
|
||||
<if test="busType != null">#{busType},</if>
|
||||
<if test="status != null">#{status},</if>
|
||||
<if test="amount != null">#{amount},</if>
|
||||
<if test="handlingCharge != null">#{handlingCharge},</if>
|
||||
<if test="platformServiceFee != null">#{platformServiceFee},</if>
|
||||
|
@ -140,6 +145,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="outTradeNo != null">out_trade_no = #{outTradeNo},</if>
|
||||
<if test="type != null">type = #{type},</if>
|
||||
<if test="busType != null">bus_type = #{busType},</if>
|
||||
<if test="status != null">status = #{status},</if>
|
||||
<if test="amount != null">amount = #{amount},</if>
|
||||
<if test="handlingCharge != null">handling_charge = #{handlingCharge},</if>
|
||||
<if test="platformServiceFee != null">platform_service_fee = #{platformServiceFee},</if>
|
||||
|
|
|
@ -17,10 +17,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<result property="callStatus" column="call_status" />
|
||||
<result property="orderNo" column="order_no" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="createBy" column="create_by" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectEtCommandLogVo">
|
||||
select id, url, command, type, mac, sn, result, longitude, latitude, call_status, create_time, order_no from et_command_log
|
||||
select id, url, command, type, mac, sn, result, longitude, latitude, call_status, create_by, create_time, order_no from et_command_log
|
||||
</sql>
|
||||
|
||||
<select id="selectEtCommandLogList" parameterType="EtCommandLog" resultMap="EtCommandLogResult">
|
||||
|
@ -56,6 +57,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="longitude != null">longitude,</if>
|
||||
<if test="callStatus != null">call_status,</if>
|
||||
<if test="orderNo != null">order_no,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
create_time
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
|
@ -69,6 +71,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="longitude != null">#{longitude},</if>
|
||||
<if test="callStatus != null">#{callStatus},</if>
|
||||
<if test="orderNo != null">#{orderNo},</if>
|
||||
<if test="createBy != null">#{createBy},</if>
|
||||
sysdate()
|
||||
</trim>
|
||||
</insert>
|
||||
|
|
|
@ -79,6 +79,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
where 1 = 1
|
||||
<if test="areaName != null and areaName != ''"> and a.area_name like concat('%', #{areaName}, '%')</if>
|
||||
<if test="deptId != null "> and d.dept_id = #{deptId}</if>
|
||||
<if test="areaId != null "> and a.area_id = #{areaId}</if>
|
||||
<!-- 数据范围过滤 -->
|
||||
${params.dataScope}
|
||||
</select>
|
||||
|
|
|
@ -43,6 +43,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<result property="videoUrl" column="video_url" />
|
||||
<result property="deductionAmount" column="deduction_amount" />
|
||||
<result property="audioFiles" column="audio_files" />
|
||||
<result property="usedSn" column="used_sn" />
|
||||
<result property="changeReason" column="change_reason" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectEtOrderVo">
|
||||
|
@ -50,7 +52,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
device_mac, sn, pay_time, paid, pay_type, type, total_fee, pay_fee, dispatch_fee,
|
||||
manage_fee, riding_fee, appointment_fee, mark, duration, distance, status,
|
||||
create_time, appointment_start_time, appointment_end_time,appointment_timeout, unlock_time,return_time,
|
||||
rule_end_time, return_type, AsText(trip_route) trip_route,trip_route_str,cycle,deposit_deduction,video_url,deduction_amount,audio_files from et_order
|
||||
rule_end_time, return_type, AsText(trip_route) trip_route,trip_route_str,cycle,deposit_deduction,video_url,deduction_amount,audio_files,used_sn,change_reason from et_order
|
||||
</sql>
|
||||
|
||||
<select id="selectEtOrderList" parameterType="EtOrder" resultMap="EtOrderResult">
|
||||
|
@ -95,7 +97,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
o.trip_route_str,
|
||||
o.video_url,
|
||||
o.deduction_amount,
|
||||
o.audio_files
|
||||
o.audio_files,
|
||||
o.used_sn,
|
||||
o.change_reason
|
||||
FROM
|
||||
et_order o
|
||||
LEFT JOIN
|
||||
|
@ -198,7 +202,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<include refid="selectEtOrderVo"/>
|
||||
<where>
|
||||
<if test="orderNo != null and orderNo != ''"> and order_no != #{orderNo}</if>
|
||||
and user_id = #{userId} and status !=4 and type = 1
|
||||
and user_id = #{userId} and status !=4 and status !=5 and status !=6 and status !=7 and type = 1
|
||||
</where>
|
||||
</select>
|
||||
|
||||
|
@ -573,6 +577,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="videoUrl != null">video_url = #{videoUrl},</if>
|
||||
<if test="deductionAmount != null">deduction_amount = #{deductionAmount},</if>
|
||||
<if test="audioFiles != null">audio_files = #{audioFiles},</if>
|
||||
<if test="usedSn != null">used_sn = #{usedSn},</if>
|
||||
<if test="changeReason != null">change_reason = #{changeReason},</if>
|
||||
</trim>
|
||||
where order_id = #{orderId}
|
||||
</update>
|
||||
|
@ -614,6 +620,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="videoUrl != null">video_url = #{videoUrl},</if>
|
||||
<if test="deductionAmount != null">deduction_amount = #{deductionAmount},</if>
|
||||
<if test="audioFiles != null">audio_files = #{audioFiles},</if>
|
||||
<if test="usedSn != null">used_sn = #{usedSn},</if>
|
||||
<if test="changeReason != null">change_reason = #{changeReason},</if>
|
||||
</trim>
|
||||
where order_no = #{orderNo}
|
||||
</update>
|
||||
|
|
|
@ -32,6 +32,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<result property="privateKeyPath" column="private_key_path" />
|
||||
<result property="merchantSerialNumber" column="merchant_serial_number" />
|
||||
<result property="refundNotifyUrl" column="refund_notify_url" />
|
||||
<result property="appUserId" column="app_user_id" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
|
@ -42,7 +43,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
select d.dept_id, d.parent_id, d.ancestors, d.dept_name,
|
||||
d.order_num, d.leader, d.phone, d.email, d.status,
|
||||
d.del_flag,d.platform_service_fee, d.handling_charge, d.is_profit_sharing, d.separate_account, d.domain, d.is_use_platform_app, d.appid, d.app_name, d.balance, d.app_secret,
|
||||
d.merchant_id, d.api_v3_key, d.notify_url, d.private_key_path,d.merchant_serial_number,d.refund_notify_url,
|
||||
d.merchant_id, d.api_v3_key, d.notify_url, d.private_key_path,d.merchant_serial_number,d.refund_notify_url,d.refund_notify_url, d.app_user_id,
|
||||
d.create_by, d.create_time
|
||||
from sys_dept d
|
||||
</sql>
|
||||
|
@ -81,12 +82,21 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<select id="selectDeptById" parameterType="Long" resultMap="SysDeptResult">
|
||||
select d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.phone, d.email, d.status,d.platform_service_fee, d.handling_charge,
|
||||
d.is_profit_sharing,d.domain,d.is_use_platform_app, d.appid, d.app_name, d.balance, d.app_secret,d.balance,d.separate_account,
|
||||
d.merchant_id, d.api_v3_key, d.notify_url, d.private_key_path,d.merchant_serial_number,d.refund_notify_url,
|
||||
d.merchant_id, d.api_v3_key, d.notify_url, d.private_key_path,d.merchant_serial_number,d.refund_notify_url,d.app_user_id,
|
||||
(select dept_name from sys_dept where dept_id = d.parent_id) parent_name
|
||||
from sys_dept d
|
||||
where d.dept_id = #{deptId}
|
||||
</select>
|
||||
|
||||
<select id="selectDeptByAppUserId" parameterType="Long" resultMap="SysDeptResult">
|
||||
select d.dept_id, d.parent_id, d.app_user_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.phone, d.email, d.status,d.platform_service_fee, d.handling_charge,
|
||||
d.is_profit_sharing,d.domain,d.is_use_platform_app, d.appid, d.app_name, d.balance, d.app_secret,d.balance,d.separate_account,
|
||||
d.merchant_id, d.api_v3_key, d.notify_url, d.private_key_path,d.merchant_serial_number,d.refund_notify_url,d.app_user_id,
|
||||
(select dept_name from sys_dept where dept_id = d.parent_id) parent_name
|
||||
from sys_dept d
|
||||
where d.app_user_id = #{appUserId}
|
||||
</select>
|
||||
|
||||
<select id="checkDeptExistUser" parameterType="Long" resultType="int">
|
||||
select count(1) from sys_user where dept_id = #{deptId} and del_flag = '0'
|
||||
</select>
|
||||
|
@ -141,6 +151,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="privateKeyPath != null and privateKeyPath != ''">private_key_path,</if>
|
||||
<if test="merchantSerialNumber != null and merchantSerialNumber != ''">merchant_serial_number,</if>
|
||||
<if test="refundNotifyUrl != null and refundNotifyUrl != ''">refund_notify_url,</if>
|
||||
<if test="appUserId != null and appUserId != ''">app_user_id,</if>
|
||||
create_time
|
||||
)values(
|
||||
<if test="deptId != null and deptId != 0">#{deptId},</if>
|
||||
|
@ -167,6 +178,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="privateKeyPath != null and privateKeyPath != ''">#{privateKeyPath},</if>
|
||||
<if test="merchantSerialNumber != null and merchantSerialNumber != ''">#{merchantSerialNumber},</if>
|
||||
<if test="refundNotifyUrl != null and refundNotifyUrl != ''">#{refundNotifyUrl},</if>
|
||||
<if test="appUserId != null and appUserId != ''">#{appUserId},</if>
|
||||
sysdate()
|
||||
)
|
||||
</insert>
|
||||
|
@ -198,6 +210,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="privateKeyPath != null and privateKeyPath != ''">private_key_path = #{privateKeyPath},</if>
|
||||
<if test="merchantSerialNumber != null and merchantSerialNumber != ''">merchant_serial_number = #{merchantSerialNumber},</if>
|
||||
<if test="refundNotifyUrl != null and refundNotifyUrl != ''">refund_notify_url = #{refundNotifyUrl},</if>
|
||||
<if test="appUserId != null">app_user_id = #{appUserId},</if>
|
||||
update_time = sysdate()
|
||||
</set>
|
||||
where dept_id = #{deptId}
|
||||
|
|
Loading…
Reference in New Issue
Block a user