|
|
@@ -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
|