13 changed files with 137 additions and 4 deletions
@ -0,0 +1,26 @@ |
|||
package com.elink.esua.epdc.dto.events.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 事件标签 |
|||
* |
|||
* @author Liuchuang |
|||
* @since 2020/9/2 14:57 |
|||
*/ |
|||
@Data |
|||
public class EventTagsResultDTO implements Serializable { |
|||
private static final long serialVersionUID = 3247787241238966543L; |
|||
|
|||
/** |
|||
* 标签ID |
|||
*/ |
|||
private String id; |
|||
|
|||
/** |
|||
* 标签名称 |
|||
*/ |
|||
private String tagName; |
|||
} |
Loading…
Reference in new issue