Browse Source
# Conflicts: # epmet-module/data-report/data-report-server/src/main/java/com/epmet/datareport/controller/screen/AgencyController.java # epmet-module/data-report/data-report-server/src/main/java/com/epmet/datareport/service/evaluationindex/screen/AgencyService.java # epmet-module/data-report/data-report-server/src/main/java/com/epmet/datareport/service/evaluationindex/screen/impl/AgencyServiceImpl.javadev_shibei_match
15 changed files with 252 additions and 8 deletions
@ -0,0 +1,18 @@ |
|||
package com.epmet.dto.result.commonservice; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 003、新增街道或者社区地区编码 入参 |
|||
* |
|||
* @author yinzuomei@elink-cn.com |
|||
* @date 2021/2/5 17:39 |
|||
*/ |
|||
@Data |
|||
public class AddAreaCodeDictResultDTO implements Serializable { |
|||
private static final long serialVersionUID = 7505566589581480619L; |
|||
private String code; |
|||
|
|||
} |
@ -0,0 +1,32 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 003、新增街道或者社区地区编码 入参 |
|||
* |
|||
* @author yinzuomei@elink-cn.com |
|||
* @date 2021/2/5 17:39 |
|||
*/ |
|||
@Data |
|||
public class AddAreaCodeDictFormDTO implements Serializable { |
|||
/** |
|||
* 街道或者社区所属的上一级areaCode |
|||
*/ |
|||
@NotBlank(message = "parentAreaCode不能为空") |
|||
private String parentAreaCode; |
|||
|
|||
/** |
|||
* 新增的街道或者社区名称 |
|||
*/ |
|||
@NotBlank(message = "name不能为空") |
|||
private String name; |
|||
|
|||
/** |
|||
* 传入此列时,代表修改名称 |
|||
*/ |
|||
private String code; |
|||
} |
Loading…
Reference in new issue