7 changed files with 116 additions and 1 deletions
@ -0,0 +1,24 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2020/12/18 下午3:12 |
|||
*/ |
|||
@Data |
|||
public class IssueVisitFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -7901684507046042401L; |
|||
|
|||
public interface IssueVisitForm{} |
|||
|
|||
/** |
|||
* 分享ID |
|||
*/ |
|||
@NotBlank(message = "分享ID不能为空",groups = {IssueVisitForm.class}) |
|||
private String shareLinkId; |
|||
} |
@ -0,0 +1,34 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.AllArgsConstructor; |
|||
import lombok.Data; |
|||
import lombok.NoArgsConstructor; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2020/12/18 下午5:13 |
|||
*/ |
|||
@Data |
|||
@AllArgsConstructor |
|||
@NoArgsConstructor |
|||
public class IssueVisitResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -5079228371448105954L; |
|||
|
|||
/** |
|||
* 议题ID |
|||
*/ |
|||
private String issueId; |
|||
|
|||
/** |
|||
* 网格ID |
|||
*/ |
|||
private String gridId; |
|||
|
|||
/** |
|||
* 客户ID |
|||
*/ |
|||
private String customerId; |
|||
} |
Loading…
Reference in new issue