Sign in

erp / mqtt-agent · Files

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • mqtt-agent
  • ..
  • message
  • Valid.java
  • ``` ...
      152d3a4e
    refactor(mqtt): 重构项目模块结构,提取web模块
    
    - 将 GlobalExceptionHandler 从 mqtt-core 移至 mqtt-web 模块
    - 将 Message 类从 mqtt-core 移至 mqtt-web 模块
    - 将 PageQuery 类从 mqtt-core 移至 mqtt-web 模块
    - 将 Valid 类从 mqtt-core 移至 mqtt-web 模块
    - 将 MessageConfirmType 从 config 包移动到 type 包
    - 创建新的 mqtt-web 模块并配置相关依赖
    - 在 mqtt-boot 中添加 WebConfig 配置类引用
    - 从 mqtt-core 移除 web 相关依赖,仅保留 json 依赖
    - 更新项目主 pom.xml 添加 mqtt-web 模块
    ```
    zhangmeiyang authored
    2025-12-30 16:41:52 +0800  
    Browse Code »
Valid.java 254 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
package com.diligrp.mqtt.web.message;

/**
 * 标记接口
 *
 * @author zhangmeiyang
 * @date 2025/11/07
 */
public interface Valid {
    interface Create {
    }

    interface Read {
    }

    interface Update {
    }

    interface Delete {
    }
}