Browse Source
# Conflicts: # epmet-module/gov-org/gov-org-server/src/main/java/com/epmet/service/impl/CustomerAgencyServiceImpl.javamaster
11 changed files with 203 additions and 14 deletions
@ -0,0 +1,15 @@ |
|||||
|
package com.epmet.dto.form.yt; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @Description 九小场所分析 |
||||
|
* @Author yzm |
||||
|
* @Date 2023/4/7 16:47 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class EnterpriseCountPlaceTypeFormDTO { |
||||
|
private String orgId; |
||||
|
private String orgType; |
||||
|
} |
||||
|
|
@ -0,0 +1,24 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
import lombok.NoArgsConstructor; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Description: |
||||
|
* @Author: lichao |
||||
|
* @Date: 2023/4/7 16:43 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class CommunityListByAgencyIdResultDTO implements Serializable { |
||||
|
private static final long serialVersionUID = -1677303397440121269L; |
||||
|
|
||||
|
private String name; |
||||
|
|
||||
|
private String streeName; |
||||
|
|
||||
|
private String districtName; |
||||
|
|
||||
|
private String createTime; |
||||
|
} |
@ -0,0 +1,24 @@ |
|||||
|
package com.epmet.dto.result.yt; |
||||
|
|
||||
|
import com.epmet.commons.tools.constant.NumConstant; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @Description 九小场所分析 |
||||
|
* @Author yzm |
||||
|
* @Date 2023/4/7 16:48 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class EnterpriseCountPlaceTypeDetailDTO { |
||||
|
private String placeType; |
||||
|
private String placeTypeName; |
||||
|
private Integer total; |
||||
|
|
||||
|
|
||||
|
public EnterpriseCountPlaceTypeDetailDTO() { |
||||
|
this.total = NumConstant.ZERO; |
||||
|
} |
||||
|
|
||||
|
|
||||
|
} |
||||
|
|
@ -0,0 +1,17 @@ |
|||||
|
package com.epmet.dto.result.yt; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @Description 九小场所分析 |
||||
|
* @Author yzm |
||||
|
* @Date 2023/4/7 16:47 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class EnterpriseCountPlaceTypeResDTO { |
||||
|
private Integer total; |
||||
|
private List<EnterpriseCountPlaceTypeDetailDTO> list; |
||||
|
} |
||||
|
|
Loading…
Reference in new issue