2 changed files with 37 additions and 27 deletions
@ -0,0 +1,37 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import com.epmet.commons.tools.validator.group.CustomerClientShowGroup; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @CreateTime 2020/6/2 15:50 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ResiTagListFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 4337657473061285656L; |
||||
|
|
||||
|
public interface ResiTagListForm{} |
||||
|
public interface ResiTagListFormWeb extends CustomerClientShowGroup{} |
||||
|
|
||||
|
/** |
||||
|
* 网格id |
||||
|
*/ |
||||
|
@NotBlank(message = "网格id不能为空",groups = {ResiTagListForm.class}) |
||||
|
private String gridId; |
||||
|
|
||||
|
/** |
||||
|
* 用户id |
||||
|
*/ |
||||
|
@NotBlank(message = "客户id不能为空",groups = {ResiTagListForm.class}) |
||||
|
private String customerId; |
||||
|
|
||||
|
/** |
||||
|
* 用户id |
||||
|
*/ |
||||
|
private String userId; |
||||
|
} |
@ -1,27 +0,0 @@ |
|||||
package com.epmet.dto.result; |
|
||||
|
|
||||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties; |
|
||||
import lombok.Data; |
|
||||
|
|
||||
import java.io.Serializable; |
|
||||
|
|
||||
/** |
|
||||
* @Author zxc |
|
||||
* @CreateTime 2020/6/2 9:47 |
|
||||
*/ |
|
||||
@JsonIgnoreProperties(ignoreUnknown = true) |
|
||||
@Data |
|
||||
public class TagInfoResultDTO implements Serializable { |
|
||||
|
|
||||
private static final long serialVersionUID = 4366515668545958124L; |
|
||||
|
|
||||
/** |
|
||||
* 标签id |
|
||||
*/ |
|
||||
private String tagId; |
|
||||
|
|
||||
/** |
|
||||
* 标签名称 |
|
||||
*/ |
|
||||
private String tagName; |
|
||||
} |
|
Loading…
Reference in new issue