潘志宝
2025-03-03 a365eb1d7213c5f28c6d2fc2b8f87099d71d17d4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.iailab.module.data.channel.http.dto;
 
import lombok.Data;
import org.springframework.stereotype.Component;
 
/**
 * @author lirm
 * @Description
 * @createTime 2024年06月03日
 */
@Component
@Data
public class HttpTagDTO {
    private String tagType;
    private String tagCode;
    private String tagName;
}