Sign in

erp / tax-agent · Files

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • tax-agent
  • ..
  • message
  • Valid.java
  • refactor(storage):重构消息和验证类包结构并新增业务关键词功能- 将 Message 和 Valid 类从 storage 包迁移至 centr… ...
      370056a9
    …al.message 包- 更新所有相关导入路径以反映新的包结构
    - 新增 TaxPipelineBusinessKeyword 领域模型及相关仓储、服务类- 添加单据类型、字段及取值方式等业务关键词配置支持
    - 调整 PageQuery 类的包归属并移除冗余 import语句
    zhangmeiyang authored
    2025-11-17 16:11:13 +0800  
    Browse Code »
Valid.java 257 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.tax.central.message;

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

    interface Read {
    }

    interface Update {
    }

    interface Delete {
    }
}