TenantPipelineConfig.java
713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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;
}