11 changed files with 156 additions and 13 deletions
@ -0,0 +1,23 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @CreateTime 2020/6/3 9:39 |
|||
*/ |
|||
@Data |
|||
public class CorrelationTagListFormDto implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -1588825995685146967L; |
|||
|
|||
/** |
|||
* 标签id集合 |
|||
*/ |
|||
private List<String> tagIdList; |
|||
|
|||
} |
|||
@ -0,0 +1,27 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @CreateTime 2020/6/3 9:41 |
|||
*/ |
|||
@JsonIgnoreProperties(ignoreUnknown = true) |
|||
@Data |
|||
public class CorrelationTagListResultDto implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 5536953304816455733L; |
|||
|
|||
/** |
|||
* 标签id |
|||
*/ |
|||
private String tagId; |
|||
|
|||
/** |
|||
* 标签名称 |
|||
*/ |
|||
private String tagName; |
|||
} |
|||
Loading…
Reference in new issue