TenantPipelineConfig.java 713 Bytes
package com.diligrp.tax.central.model;

import lombok.Getter;
import lombok.Setter;

import java.time.LocalDateTime;

/**
 * @Author: zhangmeiyang
 * @CreateTime: 2025-11-06 14:25
 * @Version: todo
 */
@Getter
@Setter
public class TenantPipelineConfig {
    /**
     * id
     */
    private Long id;
    /**
     * 管道 ID
     */
    private Long pipelineId;
    /**
     * 文档类型
     */
    private String documentType;
    /**
     * 配置键
     */
    private String configKey;
    /**
     * 配置值
     */
    private String configValue;
    /**
     * 创建时间
     */
    private LocalDateTime createdTime;
    /**
     * 修改时间
     */
    private LocalDateTime modifiedTime;
}