7 changed files with 106 additions and 0 deletions
@ -0,0 +1,22 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2021/11/2 9:13 上午 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
public class BaseInfoFamilyBuildingFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 2009866136409462441L; |
||||
|
|
||||
|
public interface BaseInfoFamilyBuildingForm{} |
||||
|
|
||||
|
@NotBlank(message = "neighborHoodId不能为空",groups = BaseInfoFamilyBuildingForm.class) |
||||
|
private String neighborHoodId; |
||||
|
} |
@ -0,0 +1,26 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2021/11/2 9:15 上午 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
public class BaseInfoFamilyBuildingResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 6084090841200733630L; |
||||
|
|
||||
|
/** |
||||
|
* 楼栋ID |
||||
|
*/ |
||||
|
private String buildingId; |
||||
|
|
||||
|
/** |
||||
|
* 楼栋名字 |
||||
|
*/ |
||||
|
private String buildingName; |
||||
|
} |
Loading…
Reference in new issue