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
  • ..
  • domain
  • BaseProxy.java
  • feat(proxy): 添加第三方ID字段并优化处理逻辑 ...
      9975a942
    - 在 BaseProxy 中添加 thirdPartyId 字段及 Getter/Setter 注解- 移除 CustomerProxy 中重复定义的 thirdPartyId 字段
    -优化 CustomerSender 中对成功实体列表的判空逻辑
    - 在 ProxyProcessor 中设置消息上下文的第三方ID数据
    zhangmeiyang authored
    2025-11-07 17:34:58 +0800  
    Browse Code »
BaseProxy.java 255 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package com.diligrp.tax.central.domain;

import lombok.Getter;
import lombok.Setter;

/**
 * @Author: zhangmeiyang
 * @CreateTime: 2025-10-30 17:26
 * @Version: todo
 */
@Getter
@Setter
public abstract class BaseProxy {
    private String thirdPartyId;
}