|
|
@@ -55,6 +55,12 @@ public class StoreIn implements Serializable {
|
|
|
@Column(name = "st_short_name")
|
|
|
private String storeShortName;
|
|
|
|
|
|
+ /**
|
|
|
+ * 应用领域
|
|
|
+ */
|
|
|
+ @Column(name="st_application",length = 100)
|
|
|
+ private String storeApplication;
|
|
|
+
|
|
|
/**
|
|
|
* 店铺LOGO URL
|
|
|
*/
|
|
|
@@ -191,6 +197,14 @@ public class StoreIn implements Serializable {
|
|
|
public StoreIn() {
|
|
|
}
|
|
|
|
|
|
+ public String getStoreApplication() {
|
|
|
+ return storeApplication;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStoreApplication(String storeApplication) {
|
|
|
+ this.storeApplication = storeApplication;
|
|
|
+ }
|
|
|
+
|
|
|
public Long getId() {
|
|
|
return id;
|
|
|
}
|