陈士柏 il y a 2 ans
Parent
commit
6710a1c0a0
1 fichiers modifiés avec 95 ajouts et 0 suppressions
  1. 95 0
      mhotel/src/com/happy/Model/Advertise.java

+ 95 - 0
mhotel/src/com/happy/Model/Advertise.java

@@ -0,0 +1,95 @@
+package com.happy.Model;
+
+public class Advertise {
+
+    public Integer id;
+    public String logoUrl;
+    public String title;
+    public String imageUrl;
+    public String jumpWay;
+    public String jumpDirection;
+    public String jumpPoint;
+    public Integer state;
+    public Integer sortLevel;
+    public String createTime;
+
+    public Integer getId() {
+        return id;
+    }
+
+    public void setId(Integer id) {
+        this.id = id;
+    }
+
+    public String getLogoUrl() {
+        return logoUrl;
+    }
+
+    public void setLogoUrl(String logoUrl) {
+        this.logoUrl = logoUrl;
+    }
+
+    public String getTitle() {
+        return title;
+    }
+
+    public void setTitle(String title) {
+        this.title = title;
+    }
+
+    public String getImageUrl() {
+        return imageUrl;
+    }
+
+    public void setImageUrl(String imageUrl) {
+        this.imageUrl = imageUrl;
+    }
+
+    public String getJumpWay() {
+        return jumpWay;
+    }
+
+    public void setJumpWay(String jumpWay) {
+        this.jumpWay = jumpWay;
+    }
+
+    public String getJumpDirection() {
+        return jumpDirection;
+    }
+
+    public void setJumpDirection(String jumpDirection) {
+        this.jumpDirection = jumpDirection;
+    }
+
+    public String getJumpPoint() {
+        return jumpPoint;
+    }
+
+    public void setJumpPoint(String jumpPoint) {
+        this.jumpPoint = jumpPoint;
+    }
+
+    public Integer getState() {
+        return state;
+    }
+
+    public void setState(Integer state) {
+        this.state = state;
+    }
+
+    public Integer getSortLevel() {
+        return sortLevel;
+    }
+
+    public void setSortLevel(Integer sortLevel) {
+        this.sortLevel = sortLevel;
+    }
+
+    public String getCreateTime() {
+        return createTime;
+    }
+
+    public void setCreateTime(String createTime) {
+        this.createTime = createTime;
+    }
+}