Browse Source

修改资质证明关联店铺的字段

huxz 8 years ago
parent
commit
dc8e6d8923

+ 5 - 9
src/main/java/com/uas/platform/b2c/prod/store/model/Qualification.java

@@ -116,9 +116,8 @@ public class Qualification {
 	/**
 	 * 店铺的Id
 	 */
-	@Deprecated
 	@Column(name = "qu_store_id")
-	private String uuid;
+	private Long storeId;
 
 	/**
 	 * 序号
@@ -209,15 +208,12 @@ public class Qualification {
 		this.remark = remark;
 	}
 
-	@Deprecated
-	public String getUuid() {
-		return uuid;
+	public Long getStoreId() {
+		return storeId;
 	}
 
-	@Deprecated
-	public Qualification setUuid(String uuid) {
-		this.uuid = uuid;
-		return this;
+	public void setStoreId(Long storeId) {
+		this.storeId = storeId;
 	}
 
 	@Deprecated