8 changed files with 159 additions and 9 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.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