36 lines
581 B
Java
36 lines
581 B
Java
package net.gepafin.tendermanagement.model.request;
|
|
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
@Getter
|
|
@Setter
|
|
public class UpdateRegionReq {
|
|
private String regionName;
|
|
|
|
private String description;
|
|
|
|
private String country;
|
|
|
|
private String status;
|
|
|
|
private String priorityArea;
|
|
|
|
private Long population;
|
|
|
|
private Double areaSize;
|
|
|
|
private Double gdp;
|
|
|
|
private Double unemploymentRate;
|
|
|
|
private Double infrastructureScore;
|
|
|
|
private Double educationLevel;
|
|
|
|
private Double healthcareAccess;
|
|
|
|
private Double environmentalScore;
|
|
|
|
}
|