7 changed files with 119 additions and 0 deletions
@ -0,0 +1,28 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.io.Serializable; |
||||
|
import java.util.Date; |
||||
|
|
||||
|
/** |
||||
|
* @ClassName AgencyCountCensus$ |
||||
|
* @Description |
||||
|
* @Date 2023/4/6 16:46 |
||||
|
* @Author lichao |
||||
|
**/ |
||||
|
@Data |
||||
|
public class CommunityCountCensusFormDTO implements Serializable { |
||||
|
|
||||
|
|
||||
|
|
||||
|
private static final long serialVersionUID = 4360690752084258055L; |
||||
|
|
||||
|
@NotBlank(message = "组织Id不能为空") |
||||
|
private String agencyId; |
||||
|
|
||||
|
private Date timeStart; |
||||
|
|
||||
|
private Date timeEnd; |
||||
|
} |
@ -0,0 +1,23 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @ClassName AgencyCountCensus$ |
||||
|
* @Description |
||||
|
* @Date 2023/4/6 16:46 |
||||
|
* @Author lichao |
||||
|
**/ |
||||
|
@Data |
||||
|
public class CommunityCountCensusResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 4360690752084258055L; |
||||
|
|
||||
|
private String agencyId; |
||||
|
|
||||
|
private String agencyName; |
||||
|
|
||||
|
private Integer count; |
||||
|
} |
Loading…
Reference in new issue