7 changed files with 159 additions and 2 deletions
@ -0,0 +1,22 @@ |
|||
package com.epmet.resi.group.dto.act.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 012、初始化活动总结模板 |
|||
* |
|||
* @author yinzuomei@elink-cn.com |
|||
* @date 2021/4/21 12:21 |
|||
*/ |
|||
@Data |
|||
public class InitTemplateFormDTO implements Serializable { |
|||
private static final long serialVersionUID = 7608480584652986190L; |
|||
|
|||
public interface AddUserInternalGroup { |
|||
} |
|||
@NotBlank(message = "groupActId不能为空", groups = AddUserInternalGroup.class) |
|||
private String groupActId; |
|||
} |
@ -0,0 +1,29 @@ |
|||
package com.epmet.resi.group.dto.act.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 012、初始化活动总结模板 |
|||
* |
|||
* @author yinzuomei@elink-cn.com |
|||
* @date 2021/4/21 12:24 |
|||
*/ |
|||
@Data |
|||
public class ActSummaryTemplateResultDTO implements Serializable { |
|||
private String groupActId; |
|||
private String title; |
|||
private String allCategoryName; |
|||
private Date startTime; |
|||
private String address; |
|||
private Integer shouldAttend; |
|||
private Integer signedInNum; |
|||
private String signedInUsers; |
|||
private List<String> textList; |
|||
private List<String> imgList; |
|||
private Integer summaryFlag; |
|||
private List<String> signedInUserIds; |
|||
} |
Loading…
Reference in new issue