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);
| }
| }
|
|