Compare commits

...

2 Commits

145 changed files with 647 additions and 439 deletions

View File

@ -5,13 +5,16 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>com.muyu</groupId> <groupId>com.muyu</groupId>
<artifactId>cloud-server</artifactId> <artifactId>cloud-modules</artifactId>
<version>3.6.3</version> <version>3.6.3</version>
<relativePath>../../pom.xml</relativePath>
</parent> </parent>
<artifactId>cloud-module-enterprise</artifactId> <artifactId>cloud-module-enterprise</artifactId>
<description>
cloud-modules-enterprise
</description>
<properties> <properties>
<maven.compiler.source>17</maven.compiler.source> <maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target> <maven.compiler.target>17</maven.compiler.target>

View File

@ -14,11 +14,14 @@ import org.springframework.web.bind.annotation.RestController;
import java.util.List; import java.util.List;
/** /**
* @Authoryang *
* @Packagecom.muyu.server.controller * * @Authoryang
* @Projectcloud-electronic * * @Packagecom.muyu.server.controller
* @nameCarFenceClazzController * * @ClassNameCarFenceClazzController
* @Date2024/9/20 14:31 * * @Projectcloud-electronic
* * @nameCarFenceClazzController
* * @Date2024/9/20 14:31
* * @Description
*/ */
@RequestMapping("/carFenceClazz") @RequestMapping("/carFenceClazz")
@RestController @RestController

View File

@ -18,11 +18,13 @@ import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
/** /**
* @Authoryang *
* @Packagecom.muyu.server.controller * * @Authoryang
* @Projectcloud-electronic * * @Packagecom.muyu.server.controller
* @nameCarFenceController * * @Projectcloud-electronic
* @Date2024/9/17 16:46 * * @nameCarFenceController
* * @Date2024/9/17 16:46
* * @Description
*/ */
@RequestMapping("/carFence") @RequestMapping("/carFence")
@RestController @RestController

View File

@ -14,11 +14,13 @@ import org.springframework.web.bind.annotation.RestController;
import java.util.List; import java.util.List;
/** /**
* @Authoryang *
* @Packagecom.muyu.server.controller * * @Authoryang
* @Projectcloud-electronic * * @Packagecom.muyu.server.controller
* @nameCarFenceClazzController * * @Projectcloud-electronic
* @Date2024/9/20 14:31 * * @nameCarFenceClazzController
* * @Date2024/9/20 14:31
* * @Description
*/ */
@RequestMapping("/carFenceType") @RequestMapping("/carFenceType")
@RestController @RestController

View File

@ -11,11 +11,12 @@ import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
/** /**
* @className: CarTypeController *
* @author: Yang 🦅 * * @className: CarTypeController
* @date: 2024/9/23 22:06 * * @author: Yang 🦅
* @Version: 1.0 * * @date: 2024/9/23 22:06
* @description: * * @Version: 1.0
* * @description:
*/ */
@RequestMapping("/cartype") @RequestMapping("/cartype")
@RestController @RestController

View File

@ -15,13 +15,13 @@ import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;
/** /**
* @className: CarTypeController *
* @author: Yang 🦅 * * @className: FaultCodeController
* @date: 2024/9/23 22:06 * * @author: Yang 🦅
* @Version: 1.0 * * @date: 2024/9/23 22:06
* @description: * * @Version: 1.0
* * @description:
*/ */
@RestController @RestController
@RequestMapping("/faultcode") @RequestMapping("/faultcode")
@Tag(name = "故障模块" ,description = "故障模块") @Tag(name = "故障模块" ,description = "故障模块")

View File

@ -17,13 +17,13 @@ import org.springframework.web.bind.annotation.*;
import java.util.List; import java.util.List;
/** /**
* @className: CarTypeController *
* @author: Yang 🦅 * * @className: FaultConditionController
* @date: 2024/9/23 22:06 * * @author: Yang 🦅
* @Version: 1.0 * * @date: 2024/9/23 22:06
* @description: * * @Version: 1.0
*/ * * @description:
*/
@RestController @RestController
@RequestMapping("/faultcondition") @RequestMapping("/faultcondition")
@Tag(name = "故障规则模块",description = "故障规则模块") @Tag(name = "故障规则模块",description = "故障规则模块")

View File

@ -1,24 +0,0 @@
package com.muyu.controller;
import com.muyu.service.FaultDetectionStrategyService;
import io.swagger.v3.oas.annotations.tags.Tag;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* @className: FaultDetectionStrategyController
* @author: Yang 🦅
* @date: 2024/9/23 22:06
* @Version: 1.0
* @description:
*/
@RestController
@RequestMapping("/faultdetectionstrategy")
@Tag(name = "车辆故障码",description = "车辆故障码")
public class FaultDetectionStrategyController {
@Autowired
private FaultDetectionStrategyService faultDetectionStrategyService;
}

View File

@ -1,14 +1,4 @@
package com.muyu.controller; package com.muyu.controller;
/**
* @className: FaultLog
* @author: Yang 🦅
* @date: 2024/9/23 21:06
* @Version: 1.0
* @description:
*/
import com.muyu.common.core.domain.Result; import com.muyu.common.core.domain.Result;
import com.muyu.service.FaultLabelService; import com.muyu.service.FaultLabelService;
import io.swagger.v3.oas.annotations.Operation; import io.swagger.v3.oas.annotations.Operation;
@ -20,6 +10,11 @@ import org.springframework.web.bind.annotation.RestController;
/** /**
* *
* * @className: FaultLog
* * @author: Yang 🦅
* * @date: 2024/9/23 21:06
* * @Version: 1.0
* * @description:
*/ */
@RestController @RestController
@RequestMapping("/faultlabel") @RequestMapping("/faultlabel")

View File

@ -12,11 +12,12 @@ import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
/** /**
* @className: FaultLog *
* @author: Yang 🦅 * * @className: FaultLog
* @date: 2024/9/23 21:06 * * @author: Yang 🦅
* @Version: 1.0 * * @date: 2024/9/23 21:06
* @description: * * @Version: 1.0
* * @description:
*/ */
@RestController @RestController
@RequestMapping("/faultlog") @RequestMapping("/faultlog")

View File

@ -15,11 +15,12 @@ import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
/** /**
* @className: FaultLog *
* @author: Yang 🦅 * * @className: FaultRuleController
* @date: 2024/9/23 21:06 * * @author: Yang 🦅
* @Version: 1.0 * * @date: 2024/9/23 21:06
* @description: * * @Version: 1.0
* * @description:
*/ */
@RestController @RestController
@RequestMapping("/faultrule") @RequestMapping("/faultrule")

View File

@ -1,12 +1,4 @@
package com.muyu.controller; package com.muyu.controller;
/**
* @className: FaultLog
* @author: Yang 🦅
* @date: 2024/9/23 21:06
* @Version: 1.0
* @description:
*/
import com.muyu.common.core.domain.Result; import com.muyu.common.core.domain.Result;
import com.muyu.service.FaultTypeService; import com.muyu.service.FaultTypeService;
import io.swagger.v3.oas.annotations.Operation; import io.swagger.v3.oas.annotations.Operation;
@ -18,6 +10,11 @@ import org.springframework.web.bind.annotation.RestController;
/** /**
* *
* * @className: FaultTypeController
* * @author: Yang 🦅
* * @date: 2024/9/23 21:06
* * @Version: 1.0
* * @description:
*/ */
@RestController @RestController
@RequestMapping("/faulttype") @RequestMapping("/faulttype")

View File

@ -16,11 +16,13 @@ import org.springframework.web.bind.annotation.RestController;
import java.util.List; import java.util.List;
/** /**
* @Authoryan *
* @Packagecom.muyu.car.controller * *
* @Projectcars * * @Authoryan
* @nameFenceGroupController * * @Packagecom.muyu.car.controller
* @Date2024/9/21 20:49 * * @Projectcars
* * @nameFenceGroupController
* * @Date2024/9/21 20:49
*/ */
@RequestMapping("/fenceGroup") @RequestMapping("/fenceGroup")
@RestController @RestController

View File

@ -14,13 +14,13 @@ import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
/** /**
* @className: FaultLog *
* @author: Yang 🦅 * * @className: MessageController
* @date: 2024/9/23 21:06 * * @author: Yang 🦅
* @Version: 1.0 * * @date: 2024/9/23 21:06
* @description: * * @Version: 1.0
* * @description:
*/ */
@RestController @RestController
@RequestMapping("/message") @RequestMapping("/message")

View File

@ -13,10 +13,12 @@ import org.springframework.web.bind.annotation.*;
import java.util.List; import java.util.List;
/** /**
* @ClassName MessageTemplateController *
* @Description TODO * * @ClassName MessageTemplateController
* @Author Li HD * * @Description TODO
* @Date 2024/9/19 * * @Author Li HD
* * @Date 2024/9/19
* * @Version 1.0
*/ */
@Log4j2 @Log4j2
@RestController @RestController

View File

@ -16,10 +16,11 @@ import org.springframework.web.bind.annotation.*;
import java.util.List; import java.util.List;
/** /**
* @ClassName MessageValueController *
* @Description TODO * * @ClassName MessageValueController
* @Author Li HD * * @Description TODO
* @Date 2024/9/19 * * @Author Li HD
* * @Date 2024/9/19
*/ */
@Log4j2 @Log4j2
@RestController @RestController

View File

@ -15,11 +15,12 @@ import org.springframework.web.bind.annotation.*;
import java.util.List; import java.util.List;
/** /**
* @Authoryan *
* @Packagecom.muyu.car.controller * * @Authoryan
* @Projectplues * * @Packagecom.muyu.car.controller
* @nameMiddleController * * @Projectplues
* @Date2024/9/22 10:06 * * @nameMiddleController
* * @Date2024/9/22 10:06
*/ */
@RequestMapping("/middle") @RequestMapping("/middle")
@RestController @RestController

View File

@ -18,7 +18,6 @@ import java.util.List;
/** /**
* Controller * Controller
*
* @author Li HD * @author Li HD
* @date 2024-09-18 * @date 2024-09-18
*/ */

View File

@ -19,7 +19,6 @@ import java.util.List;
/** /**
* Controller * Controller
*
* @author Yang * @author Yang
* @date 2024-09-18 * @date 2024-09-18
*/ */

View File

@ -19,6 +19,9 @@ import java.util.List;
* @Date 2024/9/22 9:36 * @Date 2024/9/22 9:36
* @ * @
*/ */
/**
* (SysCarType)
*/
@RestController @RestController
@RequestMapping("/sysType") @RequestMapping("/sysType")
@Tag(name = "查询车辆类型模块",description = "查询车辆类型模块") @Tag(name = "查询车辆类型模块",description = "查询车辆类型模块")

View File

@ -18,7 +18,6 @@ import java.util.List;
/** /**
* Controller * Controller
*
* @author muyu * @author muyu
* @date 2024-09-20 * @date 2024-09-20
*/ */

View File

@ -18,7 +18,6 @@ import java.util.List;
/** /**
* Controller * Controller
*
* @author muyu * @author muyu
* @date 2024-09-20 * @date 2024-09-20
*/ */

View File

@ -18,7 +18,6 @@ import java.util.List;
/** /**
* Controller * Controller
*
* @author muyu * @author muyu
* @date 2024-09-20 * @date 2024-09-20
*/ */

View File

@ -18,6 +18,10 @@ import java.util.Date;
* @nameCarFaultMessage * @nameCarFaultMessage
* @Date2024/9/25 23:45 * @Date2024/9/25 23:45
*/ */
/**
*
*/
@Data @Data
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor
@ -34,5 +38,4 @@ public class CarFaultMessage {
@JsonFormat(pattern = "yyyy-MM-dd hh:mm:ss") @JsonFormat(pattern = "yyyy-MM-dd hh:mm:ss")
private Date createTime; private Date createTime;
private Integer userId; private Integer userId;
} }

View File

@ -11,6 +11,9 @@ import lombok.experimental.SuperBuilder;
* @Version: 1.0 * @Version: 1.0
* @description: * @description:
*/ */
/**
*
*/
@Data @Data
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor

View File

@ -21,6 +21,10 @@ import java.util.Date;
* @nameCarFence * @nameCarFence
* @Date2024/9/17 16:08 * @Date2024/9/17 16:08
*/ */
/**
*
*/
@Data @Data
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor

View File

@ -14,6 +14,10 @@ import lombok.NoArgsConstructor;
* @nameCarFenceClazz * @nameCarFenceClazz
* @Date2024/9/17 16:41 * @Date2024/9/17 16:41
*/ */
/**
*
*/
@Data @Data
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor

View File

@ -14,6 +14,10 @@ import lombok.NoArgsConstructor;
* @nameType * @nameType
* @Date2024/9/17 16:40 * @Date2024/9/17 16:40
*/ */
/**
*
*/
@Data @Data
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor

View File

@ -15,6 +15,10 @@ import lombok.NoArgsConstructor;
* @Date2024/9/25 20:25 * @Date2024/9/25 20:25
* *
*/ */
/**
*
*/
@Data @Data
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor

View File

@ -13,6 +13,10 @@ import lombok.experimental.SuperBuilder;
* @Version: 1.0 * @Version: 1.0
* @description: * @description:
*/ */
/**
*
*/
@Data @Data
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor

View File

@ -16,6 +16,10 @@ import lombok.experimental.SuperBuilder;
* @Version: 1.0 * @Version: 1.0
* @description: * @description:
*/ */
/**
*
*/
@Data @Data
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor

View File

@ -20,6 +20,10 @@ import java.util.function.Supplier;
* @Version: 1.0 * @Version: 1.0
* @description: * @description:
*/ */
/**
*
*/
@Data @Data
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor

View File

@ -15,6 +15,10 @@ import lombok.experimental.SuperBuilder;
* @Version: 1.0 * @Version: 1.0
* @description: * @description:
*/ */
/**
*
*/
@Data @Data
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor

View File

@ -20,6 +20,9 @@ import java.util.Date;
* @description: * @description:
*/ */
/**
*
*/
@Data @Data
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor

View File

@ -12,6 +12,9 @@ import lombok.experimental.SuperBuilder;
* @description: * @description:
*/ */
/**
*
*/
@Data @Data
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor

View File

@ -15,6 +15,10 @@ import java.math.BigDecimal;
* @Version: 1.0 * @Version: 1.0
* @description: * @description:
*/ */
/**
*
*/
@Data @Data
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor

View File

@ -15,6 +15,10 @@ import lombok.experimental.SuperBuilder;
* @Version: 1.0 * @Version: 1.0
* @description: * @description:
*/ */
/**
*
*/
@Data @Data
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor

View File

@ -16,6 +16,10 @@ import lombok.NoArgsConstructor;
* @nameFenceAndGroupMiddle * @nameFenceAndGroupMiddle
* @Date2024/9/22 09:59 * @Date2024/9/22 09:59
*/ */
/**
*
*/
@Data @Data
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor

View File

@ -16,6 +16,10 @@ import lombok.NoArgsConstructor;
* @nameFenceGroup * @nameFenceGroup
* @Date2024/9/21 20:45 * @Date2024/9/21 20:45
*/ */
/**
*
*/
@Data @Data
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor

View File

@ -13,6 +13,10 @@ import java.sql.PreparedStatement;
* @Version: 1.0 * @Version: 1.0
* @description: * @description:
*/ */
/**
* dao
*/
@Data @Data
public class MessageDao { public class MessageDao {
private Connection connection; private Connection connection;

View File

@ -16,6 +16,9 @@ import java.util.Date;
* @description: * @description:
*/ */
/**
*
*/
public class MessageService { public class MessageService {
private MessageDao messageDao; private MessageDao messageDao;

View File

@ -17,6 +17,10 @@ import lombok.experimental.SuperBuilder;
* @Author Li HD * @Author Li HD
* @Date 2024/9/19 * @Date 2024/9/19
*/ */
/**
*
*/
@Data @Data
@SuperBuilder @SuperBuilder
@NoArgsConstructor @NoArgsConstructor

View File

@ -17,6 +17,10 @@ import lombok.experimental.SuperBuilder;
* @Author Li HD * @Author Li HD
* @Date 2024/9/19 * @Date 2024/9/19
*/ */
/**
*
*/
@Data @Data
@SuperBuilder @SuperBuilder
@NoArgsConstructor @NoArgsConstructor

View File

@ -16,6 +16,10 @@ import lombok.experimental.SuperBuilder;
* @Author Li HD * @Author Li HD
* @Date 2024/9/22 15:48 * @Date 2024/9/22 15:48
*/ */
/**
*
*/
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)
@Data @Data
@SuperBuilder @SuperBuilder

View File

@ -1,5 +1,8 @@
package com.muyu.domain; package com.muyu.domain;
/**
* WarnLevel
*/
public enum WarnLevel { public enum WarnLevel {
LOW, MEDIUM, HIGH LOW, MEDIUM, HIGH
} }

View File

@ -19,6 +19,10 @@ import java.util.Date;
* @Version: 1.0 * @Version: 1.0
* @description: * @description:
*/ */
/**
*
*/
@Data @Data
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor

View File

@ -15,6 +15,10 @@ import lombok.experimental.SuperBuilder;
* @Version: 1.0 * @Version: 1.0
* @description: * @description:
*/ */
/**
*
*/
@Data @Data
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor

View File

@ -19,6 +19,9 @@ import java.util.Date;
* @Version: 1.0 * @Version: 1.0
* @description: * @description:
*/ */
/**
*
*/
@Data @Data
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor

View File

@ -15,6 +15,9 @@ import lombok.experimental.SuperBuilder;
* @Version: 1.0 * @Version: 1.0
* @description: * @description:
*/ */
/**
*
*/
@Data @Data
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor

View File

@ -18,6 +18,9 @@ import java.util.Date;
* @nameCarFenceAdd * @nameCarFenceAdd
* @Date2024/9/23 23:57 * @Date2024/9/23 23:57
*/ */
/**
*
*/
@Data @Data
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor

View File

@ -18,6 +18,9 @@ import java.util.Date;
* @nameCarFence * @nameCarFence
* @Date2024/9/17 16:08 * @Date2024/9/17 16:08
*/ */
/**
*
*/
@Data @Data
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor

View File

@ -13,6 +13,10 @@ import lombok.NoArgsConstructor;
* @nameCarFenceReq * @nameCarFenceReq
* @Date2024/9/17 16:26 * @Date2024/9/17 16:26
*/ */
/**
*
*/
@Data @Data
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor

View File

@ -12,6 +12,9 @@ import lombok.NoArgsConstructor;
* @Version: 1.0 * @Version: 1.0
* @description: * @description:
*/ */
/**
*
*/
@Data @Data
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor

View File

@ -14,6 +14,9 @@ import lombok.NoArgsConstructor;
* @description: * @description:
*/ */
/**
*
*/
@Tag(name = "故障码列表请求对象") @Tag(name = "故障码列表请求对象")
@Data @Data
@AllArgsConstructor @AllArgsConstructor

View File

@ -12,6 +12,10 @@ import lombok.NoArgsConstructor;
* @Version: 1.0 * @Version: 1.0
* @description: * @description:
*/ */
/**
*
*/
@Data @Data
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor

View File

@ -14,6 +14,10 @@ import java.math.BigDecimal;
* @Version: 1.0 * @Version: 1.0
* @description: * @description:
*/ */
/**
* Id
*/
@Data @Data
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor

View File

@ -13,6 +13,9 @@ import lombok.NoArgsConstructor;
* @Version: 1.0 * @Version: 1.0
* @description: * @description:
*/ */
/**
*
*/
@Tag(name = "故障规则列表请求对象") @Tag(name = "故障规则列表请求对象")
@Data @Data
@AllArgsConstructor @AllArgsConstructor

View File

@ -14,6 +14,9 @@ import java.math.BigDecimal;
* @Version: 1.0 * @Version: 1.0
* @description: * @description:
*/ */
/**
*
*/
@Data @Data
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor

View File

@ -17,6 +17,10 @@ import java.util.Date;
* @Version: 1.0 * @Version: 1.0
* @description: * @description:
*/ */
/**
*
*/
@Tag(name = "故障日志列表请求对象") @Tag(name = "故障日志列表请求对象")
@Data @Data
@AllArgsConstructor @AllArgsConstructor

View File

@ -12,6 +12,10 @@ import lombok.NoArgsConstructor;
* @Author Li HD * @Author Li HD
* @Date 2024/9/19 * @Date 2024/9/19
*/ */
/**
*
*/
@Data @Data
@Builder @Builder
@NoArgsConstructor @NoArgsConstructor

View File

@ -12,6 +12,10 @@ import lombok.NoArgsConstructor;
* @Author Li HD * @Author Li HD
* @Date 2024/9/19 * @Date 2024/9/19
*/ */
/**
*
*/
@Data @Data
@Builder @Builder
@NoArgsConstructor @NoArgsConstructor

View File

@ -13,6 +13,10 @@ import lombok.NoArgsConstructor;
* @Author Li HD * @Author Li HD
* @Date 2024/9/19 * @Date 2024/9/19
*/ */
/**
*
*/
@Data @Data
@Builder @Builder
@NoArgsConstructor @NoArgsConstructor

View File

@ -19,6 +19,10 @@ import java.util.Date;
* @nameCarFenceResq * @nameCarFenceResq
* @Date2024/9/17 16:35 * @Date2024/9/17 16:35
*/ */
/**
*
*/
@Data @Data
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor

View File

@ -14,6 +14,9 @@ import lombok.Data;
* @description: * @description:
*/ */
/**
*
*/
@Data @Data
@Builder @Builder
@AllArgsConstructor @AllArgsConstructor

View File

@ -15,6 +15,9 @@ import java.util.List;
* @Version: 1.0 * @Version: 1.0
* @description: * @description:
*/ */
/**
*
*/
@Data @Data
@SuperBuilder @SuperBuilder
@AllArgsConstructor @AllArgsConstructor

View File

@ -16,7 +16,9 @@ import java.math.BigDecimal;
* @Version: 1.0 * @Version: 1.0
* @description: * @description:
*/ */
/**
*
*/
@Data @Data
@Builder @Builder
@AllArgsConstructor @AllArgsConstructor

View File

@ -15,6 +15,10 @@ import java.util.List;
* @Version: 1.0 * @Version: 1.0
* @description: * @description:
*/ */
/**
*
*/
@Data @Data
@SuperBuilder @SuperBuilder
@AllArgsConstructor @AllArgsConstructor

View File

@ -17,6 +17,10 @@ import java.util.Date;
* @Version: 1.0 * @Version: 1.0
* @description: * @description:
*/ */
/**
*
*/
@Data @Data
@Builder @Builder
@AllArgsConstructor @AllArgsConstructor

View File

@ -16,6 +16,9 @@ import java.util.List;
* @description: * @description:
*/ */
/**
*
*/
@Data @Data
@SuperBuilder @SuperBuilder
@AllArgsConstructor @AllArgsConstructor

View File

@ -13,6 +13,10 @@ import lombok.NoArgsConstructor;
* @Author Li HD * @Author Li HD
* @Date 2024/9/19 * @Date 2024/9/19
*/ */
/**
*
*/
@Data @Data
@Builder @Builder
@NoArgsConstructor @NoArgsConstructor

View File

@ -13,6 +13,10 @@ import lombok.NoArgsConstructor;
* @Author Li HD * @Author Li HD
* @Date 2024/9/19 * @Date 2024/9/19
*/ */
/**
*
*/
@Data @Data
@Builder @Builder
@NoArgsConstructor @NoArgsConstructor

View File

@ -14,6 +14,10 @@ import lombok.NoArgsConstructor;
* @Author Li HD * @Author Li HD
* @Date 2024/9/25 20:14 * @Date 2024/9/25 20:14
*/ */
/**
*
*/
@Data @Data
@Builder @Builder
@NoArgsConstructor @NoArgsConstructor

View File

@ -14,6 +14,10 @@ import lombok.experimental.SuperBuilder;
* @Version: 1.0 * @Version: 1.0
* @description: * @description:
*/ */
/**
* VO
*/
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)
@Data @Data
@AllArgsConstructor @AllArgsConstructor

View File

@ -5,11 +5,12 @@ import com.muyu.domain.CarFenceClazz;
import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Mapper;
/** /**
* @Authoryang * Mapper
* @Packagecom.muyu.server.mapper * * @Authoryang
* @Projectcloud-electronic * * @Packagecom.muyu.server.mapper
* @nameCarFenceClazzMapper * * @Projectcloud-electronic
* @Date2024/9/17 17:34 * * @nameCarFenceClazzMapper
* * @Date2024/9/17 17:34
*/ */
@Mapper @Mapper
public interface CarFenceClazzMapper extends BaseMapper<CarFenceClazz> { public interface CarFenceClazzMapper extends BaseMapper<CarFenceClazz> {

View File

@ -5,11 +5,12 @@ import com.muyu.domain.CarFence;
import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Mapper;
/** /**
* @Authoryang * Mapper
* @Packagecom.muyu.server.mysql * * @Authoryang
* @Projectcloud-electronic * * @Packagecom.muyu.server.mysql
* @nameCarFenceServiceMapper * * @Projectcloud-electronic
* @Date2024/9/17 17:13 * * @nameCarFenceServiceMapper
* * @Date2024/9/17 17:13
*/ */
@Mapper @Mapper
public interface CarFenceMapper extends BaseMapper<CarFence> { public interface CarFenceMapper extends BaseMapper<CarFence> {

View File

@ -11,11 +11,12 @@ import org.apache.ibatis.annotations.Param;
import java.util.List; import java.util.List;
/** /**
* @Authoryan * Mybatis
* @Packagecom.muyu.car.mapper * * @Authoryan
* @Projectplues * * @Packagecom.muyu.car.mapper
* @nameCarFenceServiceMybaitsMapper * * @Projectplues
* @Date2024/9/22 19:25 * * @nameCarFenceServiceMybaitsMapper
* * @Date2024/9/22 19:25
*/ */
@Mapper @Mapper
public interface CarFenceServiceMybaitsMapper { public interface CarFenceServiceMybaitsMapper {

View File

@ -5,11 +5,12 @@ import com.muyu.domain.CarFenceType;
import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Mapper;
/** /**
* @Authoryang * Mapper
* @Packagecom.muyu.server.mapper * * @Authoryang
* @Projectcloud-electronic * * @Packagecom.muyu.server.mapper
* @nameCarFenceTypeMapper * * @Projectcloud-electronic
* @Date2024/9/17 17:32 * * @nameCarFenceTypeMapper
* * @Date2024/9/17 17:32
*/ */
@Mapper @Mapper
public interface CarFenceTypeMapper extends BaseMapper<CarFenceType> { public interface CarFenceTypeMapper extends BaseMapper<CarFenceType> {

View File

@ -5,11 +5,16 @@ import com.muyu.domain.CarType;
import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Mapper;
/** /**
* @className: CarTypeMapper
* @author: Yang 🦅 */
* @date: 2024/9/23 21:06
* @Version: 1.0 /**
* @description: *
* * @className: CarTypeMapper
* * @author: Yang 🦅
* * @date: 2024/9/23 21:06
* * @Version: 1.0
* * @description:
*/ */
@Mapper @Mapper
public interface CarTypeMapper extends BaseMapper<CarType> { public interface CarTypeMapper extends BaseMapper<CarType> {

View File

@ -13,11 +13,12 @@ import org.apache.ibatis.annotations.Param;
import java.util.List; import java.util.List;
/** /**
* @className: FaultCodeMapper *
* @author: Yang 🦅 * * @className: FaultCodeMapper
* @date: 2024/9/23 21:06 * * @author: Yang 🦅
* @Version: 1.0 * * @date: 2024/9/23 21:06
* @description: * * @Version: 1.0
* * @description:
*/ */
@Mapper @Mapper
public interface FaultCodeMapper extends BaseMapper<FaultCodeVo> { public interface FaultCodeMapper extends BaseMapper<FaultCodeVo> {

View File

@ -9,11 +9,12 @@ import org.apache.ibatis.annotations.Mapper;
import java.util.List; import java.util.List;
/** /**
* @className: FaultConditionMapper *
* @author: Yang 🦅 * * @className: FaultConditionMapper
* @date: 2024/9/23 21:06 * * @author: Yang 🦅
* @Version: 1.0 * * @date: 2024/9/23 21:06
* @description: * * @Version: 1.0
* * @description:
*/ */
@Mapper @Mapper
public interface FaultConditionMapper extends BaseMapper<FaultCondition> { public interface FaultConditionMapper extends BaseMapper<FaultCondition> {

View File

@ -1,11 +0,0 @@
package com.muyu.mapper;
/**
* @className: FaultDetectionStrategyMapper
* @author: Yang 🦅
* @date: 2024/9/23 23:59
* @Version: 1.0
* @description:
*/
public interface FaultDetectionStrategyMapper {
}

View File

@ -5,11 +5,12 @@ import com.muyu.domain.FaultLabel;
import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Mapper;
/** /**
* @className: FaultLabelMapper *
* @author: Yang 🦅 * * @className: FaultLabelMapper
* @date: 2024/9/23 21:06 * * @author: Yang 🦅
* @Version: 1.0 * * @date: 2024/9/23 21:06
* @description: * * @Version: 1.0
* * @description:
*/ */
@Mapper @Mapper
public interface FaultLabelMapper extends BaseMapper<FaultLabel> { public interface FaultLabelMapper extends BaseMapper<FaultLabel> {

View File

@ -8,11 +8,12 @@ import org.apache.ibatis.annotations.Mapper;
import java.util.List; import java.util.List;
/** /**
* @className: FaultLog *
* @author: Yang 🦅 * * @className: FaultLogMapper
* @date: 2024/9/23 21:06 * * @author: Yang 🦅
* @Version: 1.0 * * @date: 2024/9/23 21:06
* @description: * * @Version: 1.0
* * @description:
*/ */
@Mapper @Mapper
public interface FaultLogMapper extends BaseMapper<FaultLog> { public interface FaultLogMapper extends BaseMapper<FaultLog> {

View File

@ -5,11 +5,12 @@ import com.muyu.domain.FaultRule;
import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Mapper;
/** /**
* @className: FaultRuleMapper *
* @author: Yang 🦅 * * @className: FaultRuleMapper
* @date: 2024/9/23 21:06 * * @author: Yang 🦅
* @Version: 1.0 * * @date: 2024/9/23 21:06
* @description: * * @Version: 1.0
* * @description:
*/ */
@Mapper @Mapper
public interface FaultRuleMapper extends BaseMapper<FaultRule> { public interface FaultRuleMapper extends BaseMapper<FaultRule> {

View File

@ -4,12 +4,14 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.muyu.domain.FaultType; import com.muyu.domain.FaultType;
import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Mapper;
/** /**
* @className: FaultTypeMapper *
* @author: Yang 🦅 * * @className: FaultTypeMapper
* @date: 2024/9/23 21:06 * * @author: Yang 🦅
* @Version: 1.0 * * @date: 2024/9/23 21:06
* @description: * * @Version: 1.0
* * @description:
*/ */
@Mapper @Mapper
public interface FaultTypeMapper extends BaseMapper<FaultType> { public interface FaultTypeMapper extends BaseMapper<FaultType> {

View File

@ -5,11 +5,12 @@ import com.muyu.domain.FenceGroup;
import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Mapper;
/** /**
* @Authoryan * Mapper
* @Packagecom.muyu.car.mapper * * @Authoryan
* @Projectcars * * @Packagecom.muyu.car.mapper
* @nameFenceGroupMapper * * @Projectcars
* @Date2024/9/21 20:54 * * @nameFenceGroupMapper
* * @Date2024/9/21 20:54
*/ */
@Mapper @Mapper
public interface FenceGroupMapper extends BaseMapper<FenceGroup> { public interface FenceGroupMapper extends BaseMapper<FenceGroup> {

View File

@ -7,11 +7,12 @@ import org.apache.ibatis.annotations.Mapper;
import java.util.List; import java.util.List;
/** /**
* @className: MessageMapper * (Message)访
* @author: Yang 🦅 * * @className: MessageMapper
* @date: 2024/9/23 21:06 * * @author: Yang 🦅
* @Version: 1.0 * * @date: 2024/9/23 21:06
* @description: * * @Version: 1.0
* * @description:
*/ */
@Mapper @Mapper
public interface MessageMapper extends BaseMapper<Message> { public interface MessageMapper extends BaseMapper<Message> {

View File

@ -5,10 +5,11 @@ import com.muyu.domain.MessageTemplate;
import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Mapper;
/** /**
* @ClassName MessageTemplateMapper * Mapper
* @Description TODO * * @ClassName MessageTemplateMapper
* @Author Li HD * * @Description TODO
* @Date 2024/9/19 * * @Author Li HD
* * @Date 2024/9/19
*/ */
@Mapper @Mapper
public interface MessageTemplateMapper extends BaseMapper<MessageTemplate> { public interface MessageTemplateMapper extends BaseMapper<MessageTemplate> {

View File

@ -5,10 +5,11 @@ import com.muyu.domain.MessageValue;
import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Mapper;
/** /**
* @ClassName MessageValueMapper * (MessageValue)访
* @Description TODO * * @ClassName MessageValueMapper
* @Author Li HD * * @Description TODO
* @Date 2024/9/19 * * @Author Li HD
* * @Date 2024/9/19
*/ */
@Mapper @Mapper
public interface MessageValueMapper extends BaseMapper<MessageValue> { public interface MessageValueMapper extends BaseMapper<MessageValue> {

View File

@ -4,11 +4,12 @@ import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Param;
/** /**
* @Authoryan *
* @Packagecom.muyu.car.mapper * * @Authoryan
* @Projectplues * * @Packagecom.muyu.car.mapper
* @nameMiddleMapper * * @Projectplues
* @Date2024/9/22 10:20 * * @nameMiddleMapper
* * @Date2024/9/22 10:20
*/ */
@Mapper @Mapper
public interface MiddleMapper { public interface MiddleMapper {

View File

@ -5,11 +5,12 @@ import com.muyu.domain.SysCarFault;
import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Mapper;
/** /**
* @className: MessageMapper * Mapper
* @author: Yang 🦅 * * @className: SysCarFaultMapper
* @date: 2024-09-18 21:06 * * @author: Yang 🦅
* @Version: 1.0 * * @date: 2024-09-18 21:06
* @description: Mapper * * @Version: 1.0
* * @description: Mapper
*/ */
@Mapper @Mapper
public interface SysCarFaultMapper extends BaseMapper<SysCarFault>{ public interface SysCarFaultMapper extends BaseMapper<SysCarFault>{

View File

@ -9,7 +9,6 @@ import java.util.List;
/** /**
* Mapper * Mapper
*
* @author Li HD * @author Li HD
* @date 2024-09-18 * @date 2024-09-18
*/ */

View File

@ -5,11 +5,17 @@ import com.muyu.domain.SysCarType;
import java.util.List; import java.util.List;
/** /**
* @version 1.0
* @Author xie ya ru */
* @Date 2024/9/22 9:30
* @ /**
* (SysCarType)访
* * @version 1.0
* * @Author xie ya ru
* * @Date 2024/9/22 9:30
* * @
*/ */
public interface SysTypeMapper extends BaseMapper<SysCarType> { public interface SysTypeMapper extends BaseMapper<SysCarType> {

View File

@ -6,7 +6,6 @@ import org.apache.ibatis.annotations.Mapper;
/** /**
* Mapper * Mapper
*
* @author muyu * @author muyu
* @date 2024-09-20 * @date 2024-09-20
*/ */

View File

@ -7,7 +7,6 @@ import org.apache.ibatis.annotations.Mapper;
/** /**
* Mapper * Mapper
*
* @author muyu * @author muyu
* @date 2024-09-20 * @date 2024-09-20
*/ */

View File

@ -7,7 +7,6 @@ import org.apache.ibatis.annotations.Mapper;
/** /**
* Mapper * Mapper
*
* @author muyu * @author muyu
* @date 2024-09-20 * @date 2024-09-20
*/ */

View File

@ -3,13 +3,13 @@ package com.muyu.service;
import com.baomidou.mybatisplus.extension.service.IService; import com.baomidou.mybatisplus.extension.service.IService;
import com.muyu.domain.CarFenceClazz; import com.muyu.domain.CarFenceClazz;
/** /**
* @Authoryang *
* @Packagecom.muyu.server.service * * @Authoryang
* @Projectcloud-electronic * * @Packagecom.muyu.server.service
* @nameCarFenceClazzService * * @Projectcloud-electronic
* @Date2024/9/17 17:33 * * @nameCarFenceClazzService
* * @Date2024/9/17 17:33
*/ */
public interface CarFenceClazzService extends IService<CarFenceClazz>{ public interface CarFenceClazzService extends IService<CarFenceClazz>{
} }

View File

@ -7,11 +7,12 @@ import com.muyu.domain.req.CarFenceReq;
import com.muyu.domain.resp.CarFenceResq; import com.muyu.domain.resp.CarFenceResq;
/** /**
* @Authoryang *
* @Packagecom.muyu.server.service * * @Authoryang
* @Projectcloud-electronic * * @Packagecom.muyu.server.service
* @nameCarFenceService * * @Projectcloud-electronic
* @Date2024/9/17 16:54 * * @nameCarFenceService
* * @Date2024/9/17 16:54
*/ */
public interface CarFenceService extends IService<CarFence> { public interface CarFenceService extends IService<CarFence> {
/** /**

View File

@ -7,11 +7,12 @@ import com.muyu.domain.req.CarFenceAdd;
import java.util.List; import java.util.List;
/** /**
* @Authoryan *
* @Packagecom.muyu.car.service * * @Authoryan
* @Projectplues * * @Packagecom.muyu.car.service
* @nameCarFenceServiceMybaits * * @Projectplues
* @Date2024/9/22 19:24 * * @nameCarFenceServiceMybaits
* * @Date2024/9/22 19:24
*/ */
public interface CarFenceServiceMybaits { public interface CarFenceServiceMybaits {
void add(Integer fenceGroupId, List<Integer> carFenceId); void add(Integer fenceGroupId, List<Integer> carFenceId);

View File

@ -5,11 +5,12 @@ import com.muyu.domain.CarFenceType;
/** /**
* @Authoryang *
* @Packagecom.muyu.server.service * * @Authoryang
* @Projectcloud-electronic * * @Packagecom.muyu.server.service
* @nameCarFenceTypeService * * @Projectcloud-electronic
* @Date2024/9/17 17:29 * * @nameCarFenceTypeService
* * @Date2024/9/17 17:29
*/ */
public interface CarFenceTypeService extends IService<CarFenceType>{ public interface CarFenceTypeService extends IService<CarFenceType>{
} }

Some files were not shown because too many files have changed in this diff Show More