12345678910111213141516171819202122232425262728293031323334 |
- 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;
- }
- }
|