TenantPipelineConfig.java
850 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
45
46
47
48
49
50
51
52
package com.diligrp.tax.central.model;
import com.diligrp.tax.central.type.SettingFieldType;
import lombok.Getter;
import lombok.Setter;
import java.util.Map;
/**
* @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 SettingFieldType settingFieldType;
/**
* 固定值
*/
private String fixedValue;
/**
* 动态值
*/
private Map<String, String> dynamicValues;
/**
* 远程参数
*/
private RemoteParam remoteParam;
}