package tk.mybatis.springboot.model; import javax.persistence.Table; import java.util.Date; public class Bmfw { private String imgUrl; private String title; private String serviceUrl; public String getImgUrl() { return this.imgUrl; } public void setImgUrl(String imgUrl) { this.imgUrl = imgUrl; } public String getTitle() { return this.title; } public void setTitle(String title) { this.title = title; } public String getServiceUrl() { return this.serviceUrl; } public void setServiceUrl(String serviceUrl) { this.serviceUrl = serviceUrl; } }