Я вношу изменения в порядок. java
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getCustomerId() {
return customerId;
}
public void setCustomerId(Integer customerId) {
this.customerId = customerId;
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
public String getCreatedAt() {
return createdAt;
}
public void setCreatedAt(String createdAt) {
this.createdAt = createdAt;
}
Это мой исходный код.
Сборка> Создать проект
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getCustomerId() {
return customerId;
}
public void setCustomerId(Integer customerId) {
this.customerId = customerId;
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
public String getCreatedAt() {
return createdAt;
}
public void setCreatedAt(String createdAt) {
this.createdAt = createdAt;
}
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
Добавление в нижняя строка
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
Почему добавляет код под заказ. java файл? Я не могу редактировать ни один из моих файлов.
Обычно я получаю такую ошибку:
Ошибка: Выполнение не выполнено для задачи ': app: greendao'.
Обнаружены 4 проблемы при разборе "D: \ Android \ wonder \ app \ src \ main \ java \ net \ arshimet \ wonder \ data \ db \ model \ Order. java". Первая проблема: Pb (355) Дублировать метод getId () в типе Order (67109219 в строке 46). Для получения дополнительных сведений запустите gradle с параметром --info.