13693261870
2025-07-02 6708810c4de34dfb9513061432d656f91d56ee3a
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package com.ruoyi.fuzhou.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.v3.oas.annotations.media.Schema;
 
import java.math.BigDecimal;
import java.math.BigInteger;
 
/**
 * <p>
 * 数据清洗规则
 * </p>
 *
 * @author sunjiawei
 * @since 2025-04-09
 */
@TableName("RECEIVE_SELECT_RULE")
@Schema( description = "数据清洗规则")
public class ReceiveSelectRule {
 
    @Schema(title ="主键")
    @TableId(value = "ID", type = IdType.AUTO)
    private BigInteger id;
 
    @Schema(title ="规则名称")
    @TableField("RULE_NAME")
    private String ruleName;
 
    @Schema(title ="参数")
    @TableField("PARAM")
    private String param;
 
    @Schema(title ="规则")
    @TableField("RULE")
    private String rule;
 
    @Schema(title ="参数值")
    @TableField("VALUE")
    private BigDecimal value;
 
    public BigInteger getId() {
        return id;
    }
 
    public void setId(BigInteger id) {
        this.id = id;
    }
 
    public String getRuleName() {
        return ruleName;
    }
 
    public void setRuleName(String ruleName) {
        this.ruleName = ruleName;
    }
 
    public String getParam() {
        return param;
    }
 
    public void setParam(String param) {
        this.param = param;
    }
 
    public String getRule() {
        return rule;
    }
 
    public void setRule(String rule) {
        this.rule = rule;
    }
 
    public BigDecimal getValue() {
        return value;
    }
 
    public void setValue(BigDecimal value) {
        this.value = value;
    }
}