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
  • ..
  • model
  • ContactCO.java
  • feat(adopt): 新增金蝶客户同步功能 ...
      fe281fad
    - 添加 AbstractCustomer、ContactCO 和 CustomerCO 模型类
    - 修改 AdoptMessageController 支持金蝶客户同步接口参数
    - 在 AdoptMessageServiceImpl 中实现金蝶数据映射逻辑
    - 增加系统类型判断与异常处理机制
    - 优化消息体构造方式,支持不同系统的数据转换
    zhangmeiyang authored
    2025-11-19 15:55:43 +0800  
    Browse Code »
ContactCO.java 310 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package com.diligrp.tax.adopt.model;

import lombok.Getter;
import lombok.Setter;

/**
 * @Author: zhangmeiyang
 * @CreateTime: 2025-11-19 15:46
 * @Version: todo
 */
@Getter
@Setter
public class ContactCO {
    private String contactName;
    private String contactPhone;
    private String contactAddress;
}