提交 | 用户 | 时间 | ||
a6de49 | 1 | package com.iailab.module.data.common.utils; |
H | 2 | |
3 | import java.text.MessageFormat; | |
4 | ||
5 | /** | |
6 | * @author PanZhibao | |
7 | * @Description | |
8 | * @createTime 2024年05月12日 | |
9 | */ | |
10 | public class TagUtils { | |
11 | ||
12 | public static String genTagId(String sourceType, String sourceName, String tagNo) { | |
13 | return MessageFormat.format("source={0};id={1}.{2}", sourceType, sourceName, tagNo); | |
14 | } | |
15 | } |