删除没用的文件
parent
eac6f6076d
commit
846073f528
|
@ -1,10 +0,0 @@
|
|||
package com.couplet.log.annotation;
|
||||
|
||||
/**
|
||||
* @author DongXiaoDong
|
||||
* @version 1.0
|
||||
* @date 2024/3/28 15:39
|
||||
* @description
|
||||
*/
|
||||
public @interface Record {
|
||||
}
|
|
@ -1,10 +0,0 @@
|
|||
package com.couplet.log.aop;
|
||||
|
||||
/**
|
||||
* @author DongXiaoDong
|
||||
* @version 1.0
|
||||
* @date 2024/3/28 23:12
|
||||
* @description
|
||||
*/
|
||||
public class AopRecord {
|
||||
}
|
|
@ -0,0 +1,36 @@
|
|||
package com.couplet.msg;
|
||||
|
||||
import java.util.Random;
|
||||
|
||||
/**
|
||||
* @author DongXiaoDong
|
||||
* @version 1.0
|
||||
* @date 2024/4/4 11:34
|
||||
* @description
|
||||
*/
|
||||
public class Randoms {
|
||||
public static void main(String[] args) {
|
||||
String gtaNumber = generateGTA();
|
||||
System.out.println("随机生成的GTA开头的七位数字:" + gtaNumber);
|
||||
}
|
||||
|
||||
public static String generateGTA() {
|
||||
// 生成四位以"GTA"开头的字符串
|
||||
String prefix = "GTA";
|
||||
// 生成三位随机数字
|
||||
String randomNumber = generateRandomNumber(4);
|
||||
// 拼接字符串
|
||||
return prefix + randomNumber;
|
||||
}
|
||||
|
||||
public static String generateRandomNumber(int length) {
|
||||
// 生成随机数
|
||||
Random random = new Random();
|
||||
StringBuilder sb = new StringBuilder();
|
||||
for (int i = 0; i < length; i++) {
|
||||
// 生成0到9之间的随机数字,并转换为字符串
|
||||
sb.append(random.nextInt(10));
|
||||
}
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
|
@ -82,6 +82,11 @@
|
|||
<artifactId>couplet-common-swagger</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.couplet</groupId>
|
||||
<artifactId>couplet-analyze-msg</artifactId>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
package com.couplet.business.server.controller;
|
||||
|
||||
/**
|
||||
* @author DongXiaoDong
|
||||
* @version 1.0
|
||||
* @date 2024/4/4 10:37
|
||||
* @description
|
||||
*/
|
||||
public class TroubleLogController {
|
||||
}
|
|
@ -1,11 +1,14 @@
|
|||
package com.couplet.business.server.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.couplet.analyze.msg.domain.CoupletMsgData;
|
||||
import com.couplet.common.domain.CoupletTroubleCode;
|
||||
import com.couplet.common.domain.CoupletTroubleGrade;
|
||||
import com.couplet.common.domain.CoupletTroubleLog;
|
||||
import com.couplet.common.domain.CoupletTroubleType;
|
||||
import com.couplet.common.domain.request.TroubleResp;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
@ -22,8 +25,4 @@ public interface SysTroubleMapper extends BaseMapper<CoupletTroubleCode> {
|
|||
List<CoupletTroubleType> selectTroubleListByType();
|
||||
|
||||
List<CoupletTroubleGrade> selectTroubleListByGrade();
|
||||
|
||||
// int addTrouble(TroubleAddReq troubleAddReq);
|
||||
|
||||
// int updateTrouble(TroubleUpdReq troubleUpdReq);
|
||||
}
|
||||
|
|
|
@ -0,0 +1,16 @@
|
|||
package com.couplet.business.server.mapper;
|
||||
|
||||
|
||||
import com.couplet.analyze.msg.domain.CoupletMsgData;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* @author DongXiaoDong
|
||||
* @version 1.0
|
||||
* @date 2024/4/4 10:38
|
||||
* @description
|
||||
*/
|
||||
@Mapper
|
||||
public interface TroubleLogMapper {
|
||||
|
||||
}
|
|
@ -1,11 +1,13 @@
|
|||
package com.couplet.business.server.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.couplet.analyze.msg.domain.CoupletMsgData;
|
||||
import com.couplet.common.core.domain.PageResult;
|
||||
import com.couplet.common.domain.CoupletTroubleCode;
|
||||
import com.couplet.common.domain.CoupletTroubleGrade;
|
||||
import com.couplet.common.domain.CoupletTroubleType;
|
||||
import com.couplet.common.domain.request.TroubleResp;
|
||||
import io.swagger.models.auth.In;
|
||||
|
||||
|
||||
import java.util.List;
|
||||
|
@ -22,8 +24,4 @@ public interface SysTroubleService extends IService<CoupletTroubleCode> {
|
|||
List<CoupletTroubleType> selectTroubleListByType();
|
||||
|
||||
List<CoupletTroubleGrade> selectTroubleListByGrade();
|
||||
|
||||
// int addTrouble (TroubleAddReq troubleAddReq);
|
||||
|
||||
// int updateTrouble(TroubleUpdReq troubleUpdReq);
|
||||
}
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
package com.couplet.business.server.service;
|
||||
|
||||
import com.couplet.analyze.msg.domain.CoupletMsgData;
|
||||
|
||||
/**
|
||||
* @author DongXiaoDong
|
||||
* @version 1.0
|
||||
* @date 2024/4/4 10:38
|
||||
* @description
|
||||
*/
|
||||
public interface TroubleLogService {
|
||||
|
||||
}
|
|
@ -1,6 +1,7 @@
|
|||
package com.couplet.business.server.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.couplet.analyze.msg.domain.CoupletMsgData;
|
||||
import com.couplet.business.server.mapper.SysTroubleMapper;
|
||||
import com.couplet.business.server.service.SysTroubleService;
|
||||
import com.couplet.common.core.domain.PageResult;
|
||||
|
@ -14,6 +15,7 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Random;
|
||||
|
||||
/**
|
||||
* @author DongXiaoDong
|
||||
|
@ -50,25 +52,33 @@ public class SysTroubleServiceImpl extends ServiceImpl<SysTroubleMapper, Couplet
|
|||
return sysTroubleMapper.selectTroubleListByGrade();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 新增故障码数据
|
||||
// * @param troubleAddReq
|
||||
*
|
||||
* 拼接GTA字符串
|
||||
* @return
|
||||
*/
|
||||
// @Override
|
||||
// public int addTrouble(TroubleAddReq troubleAddReq) {
|
||||
// return sysTroubleMapper.addTrouble(troubleAddReq);
|
||||
// }
|
||||
//
|
||||
// /**
|
||||
// * 修改故障码数据
|
||||
// * @param troubleUpdReq
|
||||
// * @return
|
||||
// */
|
||||
// @Override
|
||||
// public int updateTrouble(TroubleUpdReq troubleUpdReq) {
|
||||
// return sysTroubleMapper.updateTrouble(troubleUpdReq);
|
||||
// }
|
||||
public static String generateGTA() {
|
||||
// 生成以GTA开头的字符串
|
||||
String codefix = "GTA";
|
||||
// 删除4位数随机数字
|
||||
String s = generateRandomNumber(4);
|
||||
//拼接
|
||||
return codefix + s;
|
||||
}
|
||||
|
||||
/**
|
||||
* 随机生成1到10位的数字
|
||||
* @param length
|
||||
* @return
|
||||
*/
|
||||
public static String generateRandomNumber(int length) {
|
||||
Random random = new Random();
|
||||
StringBuilder builder = new StringBuilder();
|
||||
for (int i = 0; i < length; i++) {
|
||||
builder.append(random.nextInt(10));
|
||||
}
|
||||
return builder.toString();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -0,0 +1,23 @@
|
|||
package com.couplet.business.server.service.impl;
|
||||
|
||||
import com.couplet.analyze.msg.domain.CoupletMsgData;
|
||||
import com.couplet.business.server.mapper.TroubleLogMapper;
|
||||
import com.couplet.business.server.service.TroubleLogService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.Random;
|
||||
|
||||
/**
|
||||
* @author DongXiaoDong
|
||||
* @version 1.0
|
||||
* @date 2024/4/4 10:38
|
||||
* @description
|
||||
*/
|
||||
@Service
|
||||
public class TroubleLogServiceImpl implements TroubleLogService {
|
||||
@Autowired
|
||||
private TroubleLogMapper troubleLogMapper;
|
||||
|
||||
|
||||
}
|
|
@ -37,5 +37,9 @@
|
|||
<select id="selectTroubleListByGrade" resultType="com.couplet.common.domain.CoupletTroubleGrade">
|
||||
select * from couplet_trouble_grade
|
||||
</select>
|
||||
<select id="isTroubleLogCode" resultType="com.couplet.common.domain.CoupletTroubleLog">
|
||||
select * from couplet_trouble_log where trouble_log_id = #{troubleLogId}
|
||||
</select>
|
||||
|
||||
|
||||
</mapper>
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.couplet.business.server.mapper.TroubleLogMapper">
|
||||
|
||||
|
||||
</mapper>
|
Loading…
Reference in New Issue