12 changed files with 148 additions and 4 deletions
@ -0,0 +1,17 @@ |
|||||
|
package com.epmet.resi.group.dto.topic.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2020/11/17 3:29 下午 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class MyPartIssueFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -632199437101523924L; |
||||
|
|
||||
|
private String userId; |
||||
|
} |
@ -0,0 +1,23 @@ |
|||||
|
package com.epmet.resi.group.dto.topic.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.ArrayList; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2020/11/17 3:30 下午 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class MyPartIssueResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -7726879551303168135L; |
||||
|
|
||||
|
private List<String> topicIds; |
||||
|
|
||||
|
public MyPartIssueResultDTO() { |
||||
|
this.topicIds = new ArrayList<>(); |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue