Commit 5f89f5ec authored by it20118068's avatar it20118068

Add map

parent 270dbbfa
......@@ -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