8 changed files with 158 additions and 5 deletions
@ -0,0 +1,25 @@ |
|||||
|
package com.epmet.resi.partymember.dto.partyOrg.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2022/8/22 09:26 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
public class YearSearchFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 4557112229519696741L; |
||||
|
|
||||
|
public interface YearSearchForm{} |
||||
|
|
||||
|
@NotBlank(message = "yaerId不能为空",groups = YearSearchForm.class) |
||||
|
private String yearId; |
||||
|
|
||||
|
private String staffId; |
||||
|
private String customerId; |
||||
|
} |
@ -0,0 +1,46 @@ |
|||||
|
package com.epmet.resi.partymember.dto.partyOrg.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2022/8/22 09:27 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
public class YearSearchResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 8961924457475202790L; |
||||
|
|
||||
|
private String type; |
||||
|
private String frequency; |
||||
|
private List<YearSearchActivityListDTO> activityList; |
||||
|
|
||||
|
@Data |
||||
|
public static class YearSearchActivityListDTO implements Serializable{ |
||||
|
|
||||
|
private static final long serialVersionUID = -9050507457068805831L; |
||||
|
|
||||
|
private String activityId; |
||||
|
private String staffId; |
||||
|
private String dateId; |
||||
|
private String topic; |
||||
|
private String address; |
||||
|
private String holdTime; |
||||
|
private String type; |
||||
|
private String isPublicValue; |
||||
|
private String isPublish; |
||||
|
private String joinTypeValue; |
||||
|
private String joinUserType; |
||||
|
private String isAutoInformValue; |
||||
|
private String autoInformDay; |
||||
|
private String autoPublicTime; |
||||
|
private List<ActAndScheduleListResultDTO.JoinOrgDTO> joinOrgList; |
||||
|
private List<String> joinOrgs; |
||||
|
private Boolean isMe = false; |
||||
|
|
||||
|
} |
||||
|
} |
Loading…
Reference in new issue