9 小时以前 9bad721754fe8bbe2e5f459d0706e0fefac569f3
1
2
3
4
5
6
7
8
9
10
11
package cn.iocoder.yudao.module.qcreport.engine.rule;
 
/**
 * 词法单元。
 *
 * @param type     类型
 * @param value    原始文本(字符串已去掉引号并解转义)
 * @param position 在规则文本中的起始下标,出错时用于定位
 */
public record RuleToken(TokenType type, String value, int position) {
}