工业互联网平台2.0版本后端代码
dengzedong
2024-11-05 f11642347361202be48381f062d23fa688ea8264
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.iailab.module.data.common.utils;
 
import java.text.MessageFormat;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2024年05月12日
 */
public class TagUtils {
 
    public static String genTagId(String sourceType, String sourceName, String tagNo) {
        return MessageFormat.format("source={0};id={1}.{2}", sourceType, sourceName, tagNo);
    }
}