Bmfw.java 659 B

12345678910111213141516171819202122232425262728293031323334
  1. package tk.mybatis.springboot.model;
  2. import javax.persistence.Table;
  3. import java.util.Date;
  4. public class Bmfw {
  5. private String imgUrl;
  6. private String title;
  7. private String serviceUrl;
  8. public String getImgUrl() {
  9. return this.imgUrl;
  10. }
  11. public void setImgUrl(String imgUrl) {
  12. this.imgUrl = imgUrl;
  13. }
  14. public String getTitle() {
  15. return this.title;
  16. }
  17. public void setTitle(String title) {
  18. this.title = title;
  19. }
  20. public String getServiceUrl() {
  21. return this.serviceUrl;
  22. }
  23. public void setServiceUrl(String serviceUrl) {
  24. this.serviceUrl = serviceUrl;
  25. }
  26. }