Browse Source
# Conflicts: # epmet-module/resi-partymember/resi-partymember-server/src/main/java/com/epmet/modules/partyOrg/service/impl/IcPartyActServiceImpl.javamaster
8 changed files with 160 additions and 37 deletions
@ -0,0 +1,33 @@ |
|||||
|
package com.epmet.resi.partymember.dto.partyOrg.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2022/8/19 13:52 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ActAndScheduleListFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -6776882545589530612L; |
||||
|
|
||||
|
private String startDate; |
||||
|
private String endDate; |
||||
|
private String dateId; |
||||
|
|
||||
|
/** |
||||
|
* 是否本人创建的活动,1:是;0:否 |
||||
|
*/ |
||||
|
private String isSelf; |
||||
|
|
||||
|
/** |
||||
|
* 党组织ID |
||||
|
*/ |
||||
|
private String orgId; |
||||
|
|
||||
|
private String customerId; |
||||
|
private String staffId; |
||||
|
} |
@ -0,0 +1,53 @@ |
|||||
|
package com.epmet.resi.partymember.dto.partyOrg.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2022/8/19 13:41 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ActAndScheduleListResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 7378300105829566449L; |
||||
|
|
||||
|
private Integer scheduleTotal; |
||||
|
private Integer activityTotal; |
||||
|
private String dateId; |
||||
|
|
||||
|
private List<ActivityListDTO> activityList; |
||||
|
|
||||
|
private List<ScheduleListDTO> scheduleList; |
||||
|
|
||||
|
|
||||
|
@Data |
||||
|
public static class ActivityListDTO implements Serializable{ |
||||
|
|
||||
|
private static final long serialVersionUID = -9050507457068805831L; |
||||
|
|
||||
|
private String activityId; |
||||
|
private String topic; |
||||
|
private String address; |
||||
|
private String holdTime; |
||||
|
private String type; |
||||
|
private String isPublicValue; |
||||
|
private String joinTypeValue; |
||||
|
private Boolean isMe; |
||||
|
|
||||
|
} |
||||
|
|
||||
|
public static class ScheduleListDTO implements Serializable{ |
||||
|
|
||||
|
private static final long serialVersionUID = 5372167729733804267L; |
||||
|
|
||||
|
private String scheduleId; |
||||
|
private String title; |
||||
|
private String remindTime; |
||||
|
private String remark; |
||||
|
private Boolean isMe; |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue