15 changed files with 702 additions and 74 deletions
@ -0,0 +1,78 @@ |
|||||
|
package com.epmet.dto.result.work; |
||||
|
|
||||
|
import com.epmet.commons.tools.constant.NumConstant; |
||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.Date; |
||||
|
|
||||
|
/** |
||||
|
* 报名审核-已取消报名列表 返参DTO |
||||
|
* |
||||
|
* @author yinzuomei@elink-cn.com |
||||
|
* @date 2020/7/22 16:24 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class CanceledActUserResultDTO implements Serializable { |
||||
|
private static final long serialVersionUID = 2860252989602238156L; |
||||
|
|
||||
|
/** |
||||
|
* act_user_relation主键 |
||||
|
*/ |
||||
|
private String actUserRelationId; |
||||
|
|
||||
|
/** |
||||
|
* 活动id |
||||
|
*/ |
||||
|
private String actId; |
||||
|
|
||||
|
/** |
||||
|
* 用户id |
||||
|
*/ |
||||
|
private String userId; |
||||
|
|
||||
|
/** |
||||
|
* 姓名 |
||||
|
*/ |
||||
|
private String realName; |
||||
|
|
||||
|
/** |
||||
|
* 微信昵称 |
||||
|
*/ |
||||
|
private String nickName; |
||||
|
|
||||
|
/** |
||||
|
* 头像 |
||||
|
*/ |
||||
|
private String headImgUrl; |
||||
|
|
||||
|
/** |
||||
|
* 报名时间yyyy-MM-dd HH:mm:ss |
||||
|
*/ |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
||||
|
private Date signUpTime; |
||||
|
|
||||
|
/** |
||||
|
* true: 是志愿者 false : 不是志愿者 |
||||
|
*/ |
||||
|
private Boolean volunteerFlag; |
||||
|
|
||||
|
/** |
||||
|
* 取消报名的时间yyyy-MM-dd HH:mm:ss |
||||
|
*/ |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
||||
|
private Date cancelTime; |
||||
|
|
||||
|
/** |
||||
|
* 用户取消报名的原因 |
||||
|
*/ |
||||
|
private String cancelReason; |
||||
|
|
||||
|
public CanceledActUserResultDTO(){ |
||||
|
//微信基本信息先默认为空字符串
|
||||
|
this.setRealName(NumConstant.EMPTY_STR); |
||||
|
this.setNickName(NumConstant.EMPTY_STR); |
||||
|
this.setHeadImgUrl(NumConstant.EMPTY_STR); |
||||
|
} |
||||
|
} |
@ -0,0 +1,72 @@ |
|||||
|
package com.epmet.dto.result.work; |
||||
|
|
||||
|
import com.epmet.commons.tools.constant.NumConstant; |
||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.Date; |
||||
|
|
||||
|
/** |
||||
|
* 报名审核-已通过列表返参DTO |
||||
|
* |
||||
|
* @author yinzuomei@elink-cn.com |
||||
|
* @date 2020/7/22 15:12 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class PassedActUserResultDTO implements Serializable { |
||||
|
private static final long serialVersionUID = -3805973537303081543L; |
||||
|
/** |
||||
|
* act_user_relation主键 |
||||
|
*/ |
||||
|
private String actUserRelationId; |
||||
|
|
||||
|
/** |
||||
|
* 活动id |
||||
|
*/ |
||||
|
private String actId; |
||||
|
|
||||
|
/** |
||||
|
* 用户id |
||||
|
*/ |
||||
|
private String userId; |
||||
|
|
||||
|
/** |
||||
|
* 姓名 |
||||
|
*/ |
||||
|
private String realName; |
||||
|
|
||||
|
/** |
||||
|
* 微信昵称 |
||||
|
*/ |
||||
|
private String nickName; |
||||
|
|
||||
|
/** |
||||
|
* 头像 |
||||
|
*/ |
||||
|
private String headImgUrl; |
||||
|
|
||||
|
/** |
||||
|
* 报名时间yyyy-MM-dd HH:mm:ss |
||||
|
*/ |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
||||
|
private Date signUpTime; |
||||
|
|
||||
|
/** |
||||
|
* true: 是志愿者 false : 不是志愿者 |
||||
|
*/ |
||||
|
private Boolean volunteerFlag; |
||||
|
|
||||
|
/** |
||||
|
* 审核通过的时间yyyy-MM-dd HH:mm:ss |
||||
|
*/ |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
||||
|
private Date auditTime; |
||||
|
|
||||
|
public PassedActUserResultDTO(){ |
||||
|
//微信基本信息先默认为空字符串
|
||||
|
this.setRealName(NumConstant.EMPTY_STR); |
||||
|
this.setNickName(NumConstant.EMPTY_STR); |
||||
|
this.setHeadImgUrl(NumConstant.EMPTY_STR); |
||||
|
} |
||||
|
} |
@ -0,0 +1,77 @@ |
|||||
|
package com.epmet.dto.result.work; |
||||
|
|
||||
|
import com.epmet.commons.tools.constant.NumConstant; |
||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.Date; |
||||
|
|
||||
|
/** |
||||
|
* 报名审核-已拒绝列表 返参 |
||||
|
* |
||||
|
* @author yinzuomei@elink-cn.com |
||||
|
* @date 2020/7/22 15:41 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class RejectedActUserResultDTO implements Serializable { |
||||
|
private static final long serialVersionUID = 2569855003833546409L; |
||||
|
/** |
||||
|
* act_user_relation主键 |
||||
|
*/ |
||||
|
private String actUserRelationId; |
||||
|
|
||||
|
/** |
||||
|
* 活动id |
||||
|
*/ |
||||
|
private String actId; |
||||
|
|
||||
|
/** |
||||
|
* 用户id |
||||
|
*/ |
||||
|
private String userId; |
||||
|
|
||||
|
/** |
||||
|
* 姓名 |
||||
|
*/ |
||||
|
private String realName; |
||||
|
|
||||
|
/** |
||||
|
* 微信昵称 |
||||
|
*/ |
||||
|
private String nickName; |
||||
|
|
||||
|
/** |
||||
|
* 头像 |
||||
|
*/ |
||||
|
private String headImgUrl; |
||||
|
|
||||
|
/** |
||||
|
* 报名时间yyyy-MM-dd HH:mm:ss |
||||
|
*/ |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
||||
|
private Date signUpTime; |
||||
|
|
||||
|
/** |
||||
|
* true: 是志愿者 false : 不是志愿者 |
||||
|
*/ |
||||
|
private Boolean volunteerFlag; |
||||
|
|
||||
|
/** |
||||
|
* 审核不通过的时间yyyy-MM-dd HH:mm:ss |
||||
|
*/ |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
||||
|
private Date auditTime; |
||||
|
|
||||
|
/** |
||||
|
* 未通过原因 |
||||
|
*/ |
||||
|
private String failureReason; |
||||
|
|
||||
|
public RejectedActUserResultDTO(){ |
||||
|
//微信基本信息先默认为空字符串
|
||||
|
this.setRealName(NumConstant.EMPTY_STR); |
||||
|
this.setNickName(NumConstant.EMPTY_STR); |
||||
|
this.setHeadImgUrl(NumConstant.EMPTY_STR); |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue