|
@@ -0,0 +1,42 @@
|
|
|
+package com.caimei.modules.product.entity;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+public class CmSplitCode implements Serializable {
|
|
|
+ private Integer shopId;
|
|
|
+ private String splitCode;
|
|
|
+ private String codeName;
|
|
|
+ private String email;
|
|
|
+
|
|
|
+ public Integer getShopId() {
|
|
|
+ return shopId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setShopId(Integer shopId) {
|
|
|
+ this.shopId = shopId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSplitCode() {
|
|
|
+ return splitCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSplitCode(String splitCode) {
|
|
|
+ this.splitCode = splitCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCodeName() {
|
|
|
+ return codeName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCodeName(String codeName) {
|
|
|
+ this.codeName = codeName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getEmail() {
|
|
|
+ return email;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEmail(String email) {
|
|
|
+ this.email = email;
|
|
|
+ }
|
|
|
+}
|