仪表盘
版本库
文件存储
活动
搜索
登录
main
/
mom-pro2-after
宁夏三级mom后端
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
feat(mes): 添加智能质检报告功能与AI导入能力
云
5 小时以前
9bad721754fe8bbe2e5f459d0706e0fefac569f3
[mom-pro2-after.git]
/
yudao-module-qcreport
/
src
/
main
/
java
/
cn
/
iocoder
/
yudao
/
module
/
qcreport
/
engine
/
rule
/
RuleToken.java
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) {
}