Compare commits

...

2 Commits

Author SHA1 Message Date
Yueng aedee04643 fine()配置类提交 2024-09-29 17:16:32 +08:00
WeiRan 1627aa3dab 修改bug 2024-09-29 16:53:08 +08:00
29 changed files with 133 additions and 135 deletions

View File

@ -4,7 +4,7 @@ server:
# nacos线上地址
nacos:
addr: 159.75.188.178:8848
addr: 127.0.0.1:8848
user-name: nacos
password: nacos
namespace: eight

View File

@ -4,7 +4,7 @@ server:
# nacos线上地址
nacos:
addr: 159.75.188.178:8848
addr: 127.0.0.1:8848
user-name: nacos
password: nacos
namespace: eight

View File

@ -46,7 +46,7 @@ public class CarInformation {
*/
// @TableName(value = "car_information_VIN")
@TableField(value = "car_information_VIN")
private String carInformationVin;
private String carInformationVIN;
/**
*
*/
@ -76,9 +76,9 @@ public class CarInformation {
@Schema(title = "车辆类型外键ID", type = "Integer")
private Integer carInformationType;
/**
* ID
*
*/
private Integer carInformationBrand;
private String carInformationBrand;
/**
* (0 1 )
*/
@ -135,7 +135,7 @@ public class CarInformation {
public static CarInformation carInformationAddBuilder(CarInformationAddReq carInformation) {
return CarInformation.builder()
.carInformationVin(carInformation.getCarInformationVin())
.carInformationVIN(carInformation.getCarInformationVin())
.carInformationLicensePlate(carInformation.getCarInformationLicensePlate())
.carInformationBrand(carInformation.getCarInformationBrand())
.carInformationColor(carInformation.getCarInformationColor())

View File

@ -1,11 +1,11 @@
package com.muyu.domain;
import com.baomidou.mybatisplus.annotation.TableName;
import com.muyu.common.core.web.domain.BaseEntity;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;
import java.util.function.Supplier;
@ -16,9 +16,10 @@ import java.util.function.Supplier;
@Data
@AllArgsConstructor
@NoArgsConstructor
@SuperBuilder
@TableName(value = "车辆报文模板实体类",autoResultMap = true)
public class CarMessage extends BaseEntity {
@Builder
@Tag(name = "车辆报文模板实体类")
@TableName(value = "car_message",autoResultMap = true)
public class CarMessage {
//报文类型模块表
/**
*
@ -45,7 +46,7 @@ public class CarMessage extends BaseEntity {
/**
*
*/
private Integer carMessageCarType;
private Integer carMessageCartype;
/**
*
*/
@ -80,7 +81,7 @@ public class CarMessage extends BaseEntity {
.messageTypeName(carMessage.messageTypeName)
.messageTypeBelongs(carMessage.messageTypeBelongs)
.carMessageId(carMessage.carMessageId)
.carMessageCarType(carMessage.carMessageCarType)
.carMessageCartype(carMessage.carMessageCartype)
.carMessageType(carMessage.carMessageType)
.carMessageStartIndex(carMessage.carMessageStartIndex)
.carMessageEndIndex(carMessage.carMessageEndIndex)
@ -100,7 +101,7 @@ public class CarMessage extends BaseEntity {
.messageTypeName(carMessage.messageTypeName)
.messageTypeBelongs(carMessage.messageTypeBelongs)
.carMessageId(carMessage.carMessageId)
.carMessageCarType(carMessage.carMessageCarType)
.carMessageCartype(carMessage.carMessageCartype)
.carMessageType(carMessage.carMessageType)
.carMessageStartIndex(carMessage.carMessageStartIndex)
.carMessageEndIndex(carMessage.carMessageEndIndex)

View File

@ -1,5 +1,6 @@
package com.muyu.domain;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.AllArgsConstructor;
import lombok.Builder;
@ -19,6 +20,7 @@ import lombok.NoArgsConstructor;
@AllArgsConstructor
@NoArgsConstructor
@Tag(name = "车辆报文所属类型")
@TableName(value = "car_message_type",autoResultMap = true)
public class CarMessageType {
/**

View File

@ -60,7 +60,22 @@ public class FaultCode {
*
*/
private Integer isWarning;
/**
*
*/
private String faulttypeName;
/**
*
*/
private String messageTypeName;
/**
*
*/
private String messageTypeCode;
/**
*
*/
private String messageTypeBelongs;
public static FaultCode addfaultcode(FaultCodeAddReq faultCodeAddReq){

View File

@ -6,6 +6,7 @@ import com.baomidou.mybatisplus.annotation.TableName;
import com.muyu.domain.req.FaultCodeAddReq;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;
@ -50,6 +51,7 @@ public class FaultLabel {
return FaultLabel.builder()
.messageTypeId(0)
.messageTypeId(faultCodeAddReq.getMessageTypeId())
.messageTypeCode(faultCodeAddReq.getMessageTypeCode())
.messageTypeName(faultCodeAddReq.getMessageTypeName())
.messageTypeBelongs(faultCodeAddReq.getMessageTypeBelongs())
.build();

View File

@ -55,7 +55,7 @@ public class FaultLog {
/**
* VIN
*/
private String carInformationVin;
private String carInformationVIN;
/**
*
*/

View File

@ -31,7 +31,7 @@ public class CarInformationAddReq {
/**
*
*/
private Integer carInformationBrand;
private String carInformationBrand;
/**
*

View File

@ -26,8 +26,8 @@ public class CarInformationUpdReq {
/**
*
*/
@Schema(title = "车辆品牌", type = "Integer")
private Integer carInformationBrand;
@Schema(title = "车辆品牌", type = "String")
private String carInformationBrand;
/**
*

View File

@ -21,6 +21,7 @@ import lombok.NoArgsConstructor;
@NoArgsConstructor
@Builder
public class FaultCodeListReq {
/**
*
*/

View File

@ -54,7 +54,7 @@ public class CarInformationResp {
/**
* ID
*/
private String carInformationFence;
private Integer carInformationFence;
/**
*
*/
@ -66,9 +66,9 @@ public class CarInformationResp {
*/
private Integer carInformationType;
/**
* ID
*
*/
private Integer carInformationBrand;
private String carInformationBrand;
/**
* (0 1 )
*/
@ -119,10 +119,10 @@ public class CarInformationResp {
/**
*ID
*/
private Integer fenceid;
private Integer id;
/**
*
*/
private String fencename;
private String name;
}

View File

@ -1,11 +1,12 @@
package com.muyu.domain.resp;
import com.muyu.domain.vo.FaultCodeVO;
import com.muyu.domain.FaultCode;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
*
@ -19,6 +20,7 @@ import lombok.Data;
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
@Tag(name="故障码信息响应对象",description = "故障码查询的响应结果")
public class FaultCodeListResp {
@ -55,13 +57,13 @@ public class FaultCodeListResp {
*/
private String faulttypeName;
/**
*
*/
private String messageTypeName;
/**
*
*
*/
private String messageTypeCode;
/**
*
*/
private String messageTypeName;
/**
*
*/
@ -69,22 +71,22 @@ public class FaultCodeListResp {
/**
*
* @param faultCodeVO
* @param faultCode
* @return
*/
public static FaultCodeListResp faultCodeListResp(FaultCodeVO faultCodeVO){
public static FaultCodeListResp faultCodeListResp(FaultCode faultCode){
return FaultCodeListResp.builder()
.faultcodeId(faultCodeVO.getFaultcodeId())
.messageTypeId(faultCodeVO.getMessageTypeId())
.faultcodeNumber(faultCodeVO.getFaultcodeNumber())
.faultGroup(faultCodeVO.getFaultGroup())
.faultBit(faultCodeVO.getFaultBit())
.faultValue(faultCodeVO.getFaultValue())
.isWarning(faultCodeVO.getIsWarning())
.faulttypeName(faultCodeVO.getFaulttypeName())
.messageTypeName(faultCodeVO.getMessageTypeName())
.messageTypeCode(faultCodeVO.getMessageTypeCode())
.messageTypeBelongs(faultCodeVO.getMessageTypeBelongs())
.faultcodeId(faultCode.getFaultcodeId())
.messageTypeId(faultCode.getMessageTypeId())
.faultcodeNumber(faultCode.getFaultcodeNumber())
.faultGroup(faultCode.getFaultGroup())
.faultBit(faultCode.getFaultBit())
.faultValue(faultCode.getFaultValue())
.isWarning(faultCode.getIsWarning())
.faulttypeName(faultCode.getFaulttypeName())
.messageTypeName(faultCode.getMessageTypeName())
.messageTypeCode(faultCode.getMessageTypeCode())
.messageTypeBelongs(faultCode.getMessageTypeBelongs())
.build();
}
}

View File

@ -77,7 +77,7 @@ public class FaultLogListResp {
.startwarningTime(faultLog.getStartwarningTime())
.endwarningTime(faultLog.getEndwarningTime())
.faultcodeNumber(faultLog.getFaultcodeNumber())
.carInformationVIN(faultLog.getCarInformationVin())
.carInformationVIN(faultLog.getCarInformationVIN())
.build();
}
}

View File

@ -1,44 +0,0 @@
package com.muyu.domain.vo;
import com.muyu.domain.FaultCode;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;
/**
* ()
* @Authorweiran
* @Packagecom.muyu.cloud.faultmanage.domain.vo
* @Projectcloud-faultmanage
* @nameFaultCodeVO
* @Date2024/9/17 15:14
*/
@EqualsAndHashCode(callSuper = true)
@Data
@AllArgsConstructor
@NoArgsConstructor
@SuperBuilder
@Tag(name = "故障码视图")
public class FaultCodeVO extends FaultCode {
/**
*
*/
private String faulttypeName;
/**
*
*/
private String messageTypeName;
/**
*
*/
private String messageTypeCode;
/**
*
*/
private String messageTypeBelongs;
}

View File

@ -95,7 +95,7 @@ public class CarInformationController {
*/
@GetMapping("/delBycarInformationId/{carInformationId}")
@Operation(summary = "企业车辆删除")
public Result delBycarInformationId(@Validated @PathVariable("carInformationId") Integer carInformationId){
public Result delBycarInformationId(@Validated @RequestParam(name = "carInformationId") Integer carInformationId){
boolean delBycarInformationId = carInformationService.delBycarInformationId(carInformationId);
if (delBycarInformationId){
return Result.success(delBycarInformationId ,"删除车辆成功");

View File

@ -0,0 +1,15 @@
package com.muyu.server.mapper;
import com.github.yulichang.base.MPJBaseMapper;
import com.muyu.domain.CarMessageType;
import com.thoughtworks.xstream.mapper.SecurityMapper;
/**
* @Authoryang
* @Packagecom.muyu.server.mapper
* @Projectcloud-server-8
* @nameCarMessageTypeMapper
* @Date2024/9/29 16:48
*/
public interface CarMessageTypeMapper extends MPJBaseMapper<CarMessageType> {
}

View File

@ -1,19 +1,9 @@
package com.muyu.server.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.github.yulichang.base.MPJBaseMapper;
import com.muyu.domain.FaultCode;
import com.muyu.domain.FaultLabel;
import com.muyu.domain.req.FaultCodeAddReq;
import com.muyu.domain.req.FaultCodeListReq;
import com.muyu.domain.req.FaultCodeUpdReq;
import com.muyu.domain.resp.FaultCodeListResp;
import com.muyu.domain.vo.FaultCodeVO;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
import org.apache.ibatis.annotations.Mapper;
/**
*

View File

@ -6,9 +6,7 @@ import com.muyu.domain.FaultCode;
import com.muyu.domain.req.FaultCodeAddReq;
import com.muyu.domain.req.FaultCodeListReq;
import com.muyu.domain.req.FaultCodeUpdReq;
import com.muyu.domain.resp.FaultCodeListResp;
import com.muyu.domain.resp.FaultCodeTotalListResp;
import com.muyu.domain.vo.FaultCodeVO;
/**

View File

@ -58,17 +58,18 @@ public class CarInformationServiceImpl
*/
@Override
public Page<CarInformationResp> selectCarInformationList(CarInformationListReq carInformationListReq) {
Page<CarInformationResp> carInformationRespPage = carInformationMapper.selectJoinPage(
return carInformationMapper.selectJoinPage(
new Page<>(carInformationListReq.getPageNum(), carInformationListReq.getPageSize()),
CarInformationResp.class,
new MPJLambdaWrapper<CarInformation>()
.selectAll(CarInformation.class)
.select(CarType::getCarTypeId, CarType::getCarTypeName)
.select(CarFence::getId, CarFence::getName)
.leftJoin(CarType.class, CarType::getCarTypeId, CarInformation::getCarInformationType)
.leftJoin(CarFence.class, CarFence::getId, CarInformation::getCarInformationFence)
.leftJoin(CarType.class, CarType::getCarTypeId, CarInformation::getCarInformationType)
.eq(StringUtils.isNotEmpty(carInformationListReq.getCarInformationVIN())
,CarInformation::getCarInformationVin
,CarInformation::getCarInformationVIN
, carInformationListReq.getCarInformationVIN())
.eq(StringUtils.isNotNull(carInformationListReq.getCarTypeId())
,CarType::getCarTypeId, carInformationListReq.getCarTypeId())
@ -79,7 +80,7 @@ public class CarInformationServiceImpl
,CarInformation::getCarInformationState
, carInformationListReq.getCarInformationState())
.like(StringUtils.isNotEmpty(carInformationListReq.getCarInformationVIN())
,CarInformation::getCarInformationVin
,CarInformation::getCarInformationVIN
, carInformationListReq.getCarInformationVIN())
.eq(StringUtils.isNotEmpty( carInformationListReq.getCarInformationMotorModel())
,CarInformation::getCarInformationMotorModel
@ -91,7 +92,6 @@ public class CarInformationServiceImpl
,CarInformation::getCarInformationBatteryModel
,carInformationListReq.getCarInformationBatteryModel())
);
return carInformationRespPage;
}
/**
@ -113,8 +113,7 @@ public class CarInformationServiceImpl
*/
@Override
public boolean delBycarInformationId(Integer carInformationId) {
boolean delBycarInformationId = this.removeById(carInformationId);
return delBycarInformationId;
return this.removeById(carInformationId);
}

View File

@ -1,6 +1,5 @@
package com.muyu.server.service.impl;
import cn.hutool.db.Page;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.github.yulichang.wrapper.MPJLambdaWrapper;
import com.muyu.common.core.utils.StringUtils;
@ -36,7 +35,7 @@ public class CarMessageServiceImpl
CarMessage.class
,new MPJLambdaWrapper<CarMessage>()
.select(CarMessage::getCarMessageId
,CarMessage::getCarMessageCarType
,CarMessage::getCarMessageCartype
,CarMessage::getCarMessageType
,CarMessage::getCarMessageStartIndex
,CarMessage::getCarMessageEndIndex
@ -48,7 +47,7 @@ public class CarMessageServiceImpl
.select(CarType::getCarTypeId
,CarType::getCarTypeName)
.leftJoin(CarMessageType.class,CarMessageType::getMessageTypeId,CarMessage::getCarMessageType)
.leftJoin(CarType.class,CarType::getCarTypeId,CarMessage::getCarMessageCarType));
.leftJoin(CarType.class,CarType::getCarTypeId,CarMessage::getCarMessageCartype));
}
/**
*
@ -82,14 +81,14 @@ public class CarMessageServiceImpl
public List<CarMessageResp> selectJoinList(Long id) {
return carMessageMapper.selectJoinList(CarMessageResp.class, new MPJLambdaWrapper<CarMessage>()
.select(CarMessage::getCarMessageId,
CarMessage::getCarMessageCarType,
CarMessage::getCarMessageCartype,
CarMessage::getCarMessageType,
CarMessage::getCarMessageStartIndex,
CarMessage::getCarMessageEndIndex,
CarMessage::getCarMessageState)
.select(CarMessageType::getMessageTypeName)
.leftJoin(CarMessageType.class, CarMessageType::getMessageTypeId, CarMessage::getCarMessageType)
.eq(StringUtils.isNotNull(id),CarMessage::getCarMessageCarType, id));
.eq(StringUtils.isNotNull(id),CarMessage::getCarMessageCartype, id));
}

View File

@ -12,7 +12,7 @@ import com.muyu.domain.req.FaultCodeListReq;
import com.muyu.domain.req.FaultCodeUpdReq;
import com.muyu.domain.resp.FaultCodeListResp;
import com.muyu.domain.resp.FaultCodeTotalListResp;
import com.muyu.domain.vo.FaultCodeVO;
import com.muyu.domain.resp.FaultConditionListResp;
import com.muyu.server.mapper.FaultCodeMapper;
import com.muyu.server.service.FaultCodeService;
import com.muyu.server.service.FaultLabelService;
@ -44,6 +44,8 @@ public class FaultCodeServiceImpl extends ServiceImpl<FaultCodeMapper, FaultCode
*/
@Override
public FaultCodeTotalListResp selectfaultcodelist(FaultCodeListReq faultCodeListReq) {
LambdaQueryWrapper<FaultCode> queryWrapper = new LambdaQueryWrapper<>();
long count = this.count(queryWrapper);
MPJLambdaWrapper<FaultCode> wrapper = new MPJLambdaWrapper<>();
wrapper.select(
@ -51,7 +53,6 @@ public class FaultCodeServiceImpl extends ServiceImpl<FaultCodeMapper, FaultCode
FaultCode::getMessageTypeId,
FaultCode::getFaultcodeNumber,
FaultCode::getFaultGroup,
FaultCode::getFaultcodeId,
FaultCode::getFaultValue,
FaultCode::getIsWarning)
.select(
@ -62,10 +63,9 @@ public class FaultCodeServiceImpl extends ServiceImpl<FaultCodeMapper, FaultCode
FaultCode::getFaultcodeNumber,faultCodeListReq.getFaultcodeNumber())
.eq(StringUtils.isNotEmpty(faultCodeListReq.getFaultBit()),
FaultCode::getFaultBit, faultCodeListReq.getFaultBit());
Page<FaultCodeListResp> page = faultCodeMapper.selectJoinPage(new Page<>(faultCodeListReq.getPageNum(), faultCodeListReq.getPageSize()),
FaultCodeListResp.class, wrapper);
return FaultCodeTotalListResp.faultCodeTotalListResp(page.getRecords(),page.getTotal());
wrapper.last("LIMIT "+ ((faultCodeListReq.getPageNum()-1)*faultCodeListReq.getPageSize())+", "+faultCodeListReq.getPageSize());
List<FaultCodeListResp> faultCodeListResps = faultCodeMapper.selectJoinList(FaultCodeListResp.class, wrapper);
return FaultCodeTotalListResp.faultCodeTotalListResp(faultCodeListResps,count);
}

View File

@ -5,12 +5,14 @@ import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.github.yulichang.wrapper.MPJLambdaWrapper;
import com.muyu.domain.CarType;
import com.muyu.domain.FaultCode;
import com.muyu.domain.FaultCondition;
import com.muyu.domain.FaultLabel;
import com.muyu.domain.req.FaultConditionAddReq;
import com.muyu.domain.req.FaultConditionListReq;
import com.muyu.domain.resp.FaultConditionListResp;
import com.muyu.domain.resp.FaultConditionTotalListResp;
import com.muyu.domain.resp.FaultLogListResp;
import com.muyu.server.mapper.FaultConditionMapper;
import com.muyu.server.service.FaultConditionService;
import org.springframework.beans.factory.annotation.Autowired;
@ -42,8 +44,14 @@ public class FaultConditionServiceImpl extends ServiceImpl<FaultConditionMapper,
*/
@Override
public FaultConditionTotalListResp getfaultrulelist(FaultConditionListReq faultConditionListReq) {
LambdaQueryWrapper<FaultCondition> queryWrapper = new LambdaQueryWrapper<>();
long count = this.count(queryWrapper);
MPJLambdaWrapper<FaultCondition> wrapper = new MPJLambdaWrapper<>();
wrapper.selectAll(FaultCondition.class)
wrapper.select(FaultCondition::getCarconditionId,
FaultCondition::getCarTypeId,
FaultCondition::getMessageTypeId,
FaultCondition::getFaultconditionIdentification,
FaultCondition::getFaultconditionParameter)
.select(CarType::getCarTypeName)
.select(FaultLabel::getMessageTypeName,
FaultLabel::getMessageTypeCode)
@ -55,9 +63,9 @@ public class FaultConditionServiceImpl extends ServiceImpl<FaultConditionMapper,
if (faultConditionListReq.getMessageTypeId()!=0){
wrapper.eq(FaultLabel::getMessageTypeId, faultConditionListReq.getMessageTypeId());
}
Page<FaultConditionListResp> page = faultConditionMapper.selectJoinPage(new Page<>(faultConditionListReq.getPageNum(), faultConditionListReq.getPageSize()),
FaultConditionListResp.class, wrapper);
return FaultConditionTotalListResp.faultConditionTotalListResp(page.getRecords(),page.getTotal());
wrapper.last("LIMIT "+ ((faultConditionListReq.getPageNum()-1)*faultConditionListReq.getPageSize())+", "+faultConditionListReq.getPageSize());
List<FaultConditionListResp> faultConditionListResps = faultConditionMapper.selectJoinList(FaultConditionListResp.class, wrapper);
return FaultConditionTotalListResp.faultConditionTotalListResp(faultConditionListResps,count);
}

View File

@ -7,6 +7,7 @@ import com.github.yulichang.wrapper.MPJLambdaWrapper;
import com.muyu.common.core.utils.StringUtils;
import com.muyu.domain.CarInformation;
import com.muyu.domain.FaultCode;
import com.muyu.domain.FaultCondition;
import com.muyu.domain.FaultLog;
import com.muyu.domain.req.FaultLogListReq;
import com.muyu.domain.resp.FaultLogListResp;
@ -15,6 +16,9 @@ import com.muyu.server.mapper.FaultLogMapper;
import com.muyu.server.service.FaultLogService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
/**
*
* @Authorweiran
@ -35,11 +39,17 @@ public class FaultLogServiceImpl extends ServiceImpl<FaultLogMapper, FaultLog> i
*/
@Override
public FaultLogTotalListResp selectfaultlog(FaultLogListReq faultLogListReq) {
LambdaQueryWrapper<FaultLog> queryWrapper = new LambdaQueryWrapper<>();
long count = this.count(queryWrapper);
MPJLambdaWrapper<FaultLog> wrapper = new MPJLambdaWrapper<>();
wrapper.selectAll(FaultLog.class)
wrapper.select(FaultLog::getLogId,
FaultLog::getFaultcodeId,
FaultLog::getCarInformationId,
FaultLog::getCarVin,
FaultLog::getStartwarningTime,
FaultLog::getEndwarningTime)
.select(FaultCode::getFaultcodeNumber)
.select(CarInformation::getCarInformationVin)
.select(CarInformation::getCarInformationVIN)
.leftJoin(FaultCode.class,FaultCode::getFaultcodeId,FaultLog::getFaultcodeId)
.leftJoin(CarInformation.class,CarInformation::getCarInformationId,FaultLog::getCarInformationId)
.eq(StringUtils.isNotEmpty(faultLogListReq.getCarVin()),
@ -50,8 +60,8 @@ public class FaultLogServiceImpl extends ServiceImpl<FaultLogMapper, FaultLog> i
if (faultLogListReq.getEndwarningTime()!=null){
wrapper.eq(FaultLog::getEndwarningTime,faultLogListReq.getEndwarningTime());
}
Page<FaultLogListResp> ipage = faultLogMapper.selectJoinPage(new Page<>(faultLogListReq.getPageNum(),
faultLogListReq.getPageSize()), FaultLogListResp.class, wrapper);
return FaultLogTotalListResp.faultLogTotalListResp(ipage.getRecords(),ipage.getTotal());
wrapper.last("LIMIT "+ ((faultLogListReq.getPageNum()-1)*faultLogListReq.getPageSize())+", "+faultLogListReq.getPageSize());
List<FaultLogListResp> faultLogListResps = faultLogMapper.selectJoinList(FaultLogListResp.class, wrapper);
return FaultLogTotalListResp.faultLogTotalListResp(faultLogListResps,count);
}
}

View File

@ -4,7 +4,7 @@ server:
# nacos线上地址
nacos:
addr: 159.75.188.178:8848
addr: 127.0.0.1:8848
user-name: nacos
password: nacos
namespace: eight

View File

@ -4,7 +4,7 @@ server:
# nacos线上地址
nacos:
addr: 159.75.188.178:8848
addr: 127.0.0.1:8848
user-name: nacos
password: nacos
namespace: eight

View File

@ -4,7 +4,7 @@ server:
# nacos线上地址
nacos:
addr: 159.75.188.178:8848
addr: 127.0.0.1:8848
user-name: nacos
password: nacos
namespace: eight

View File

@ -4,7 +4,7 @@ server:
# nacos线上地址
nacos:
addr: 159.75.188.178:8848
addr: 127.0.0.1:8848
user-name: nacos
password: nacos
namespace: eight

View File

@ -4,7 +4,7 @@ server:
# nacos线上地址
nacos:
addr: 159.75.188.178:8848
addr: 127.0.0.1:8848
user-name: nacos
password: nacos
namespace: eight