|
|
@@ -150,6 +150,11 @@ public class StoreBrandInfo {
|
|
|
@Column(name = "authorized_status_reason")
|
|
|
private String authorizedReason;
|
|
|
|
|
|
+ /**
|
|
|
+ * 授权状态其他原因说明
|
|
|
+ */
|
|
|
+ @Column(name = "brand_store_id")
|
|
|
+ private Long storeId;
|
|
|
|
|
|
public StoreBrandInfo() {
|
|
|
}
|
|
|
@@ -330,6 +335,14 @@ public class StoreBrandInfo {
|
|
|
this.authorizedReason = authorizedReason;
|
|
|
}
|
|
|
|
|
|
+ public Long getStoreId() {
|
|
|
+ return storeId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStoreId(Long storeId) {
|
|
|
+ this.storeId = storeId;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return JacksonUtils.toJson(this);
|