|
@@ -0,0 +1,22 @@
|
|
|
+package com.zkqy.system.entity.vo;
|
|
|
+
|
|
|
+public class MobilePageDesignDataSubTableVo {
|
|
|
+ private String primaryKey;
|
|
|
+ private String subKey;
|
|
|
+
|
|
|
+ public String getPrimaryKey() {
|
|
|
+ return primaryKey;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPrimaryKey(String primaryKey) {
|
|
|
+ this.primaryKey = primaryKey;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSubKey() {
|
|
|
+ return subKey;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSubKey(String subKey) {
|
|
|
+ this.subKey = subKey;
|
|
|
+ }
|
|
|
+}
|