Jay
2024-10-16 48c2e5ffb3f9ad3509006e50f3142ea4d0e7f619
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);
    }
}