1.新增字典功能

2.RocketMQ新增治理消息模板
This commit is contained in:
2023-08-14 21:04:49 +08:00
parent a6271b9c13
commit a0e1bb0225
14 changed files with 239 additions and 9 deletions

View File

@@ -0,0 +1,22 @@
package com.njcn.system.pojo.dto;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
* 类的介绍:
*
* @author xuyang
* @version 1.0.0
* @createTime 2023/8/14 20:28
*/
@Data
public class EpdDTO {
@ApiModelProperty("指标名称")
private String dictName;
@ApiModelProperty("inflxuDB表名")
private String tableName;
}