Commit 8e6115b2 authored by Tharuka Dilshan's avatar Tharuka Dilshan

Merge remote-tracking branch 'remotes/origin/master' into Dilshan-P.G.T-DEV

parents 3287c25c 6054d0e0
......@@ -12,7 +12,7 @@ import lombok.Data;
@Data
@Entity
@Table(name = "app_user", catalog = "shrasthra")
@Table(name = "mcq_words", catalog = "shrasthra")
public class McqWord {
@Id
......
......@@ -14,6 +14,7 @@ public class SignMap {
private Integer id;
private String label;
private String value;
private String imgUrl;
@Id
@GeneratedValue(strategy = IDENTITY)
......@@ -40,6 +41,15 @@ public class SignMap {
public void setValue(String value) {
this.value = value;
}
@Column(name = "img_url")
public String getImgUrl() {
return imgUrl;
}
public void setImgUrl(String imgUrl) {
this.imgUrl = imgUrl;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment