7 changed files with 71 additions and 1 deletions
@ -0,0 +1,11 @@ |
|||||
|
package com.epmet.dto; |
||||
|
|
||||
|
import com.epmet.commons.tools.dto.form.PageFormDTO; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
@Data |
||||
|
public class CommunityFormDTO extends PageFormDTO { |
||||
|
private static final long serialVersionUID = -4126418307909816127L; |
||||
|
|
||||
|
private String agencyName; |
||||
|
} |
@ -0,0 +1,14 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
@Data |
||||
|
public class CommunityListByAgencyNameResultDTO implements Serializable { |
||||
|
private static final long serialVersionUID = 4336149113821131764L; |
||||
|
|
||||
|
private String agencyId; |
||||
|
|
||||
|
private String agencyName; |
||||
|
} |
Loading…
Reference in new issue