6 changed files with 118 additions and 0 deletions
@ -0,0 +1,51 @@ |
|||
package com.epmet.dto.result.work; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonIgnore; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 描述一下 |
|||
* |
|||
* @author yinzuomei@elink-cn.com |
|||
* @date 2020/7/21 12:45 |
|||
*/ |
|||
@Data |
|||
public class CustomerHeartConfigsResultDTO implements Serializable { |
|||
/** |
|||
* act_customized主键 |
|||
*/ |
|||
@JsonIgnore |
|||
private String actCustomizedId; |
|||
|
|||
/** |
|||
* 标题:志愿者去哪儿 |
|||
*/ |
|||
private String titleName; |
|||
|
|||
/** |
|||
* 咨询热线 |
|||
*/ |
|||
private String hotLine; |
|||
|
|||
/** |
|||
* 活动列表 |
|||
*/ |
|||
private String actListName; |
|||
|
|||
/** |
|||
* 爱心榜 |
|||
*/ |
|||
private String heartRankName; |
|||
|
|||
/** |
|||
* 活动回顾 |
|||
*/ |
|||
private String actReviewName; |
|||
|
|||
/** |
|||
* 我的活动 |
|||
*/ |
|||
private String myActName; |
|||
} |
Loading…
Reference in new issue