dengzedong
2025-05-08 6a020a8c15b4b04467e90c4ba4773c8c2faa51a8
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);
    }
}