Commit 3d720276 by guojuxing

溢出门店列表添加共享标志字段

parent 702d7c93
......@@ -51,6 +51,21 @@ public class StoreOverflowVO implements Serializable {
private String storeGroupName;
private String provinces;
/**
* 是否共享 1是0否
*/
private Integer ownType;
/**
* 共享标记 1:自有 0:共享
*/
private Integer ownerFlag;
/**
* 自有商户名称
*/
private String ownerEntName;
public Integer getStoreId() {
return storeId;
......@@ -124,6 +139,33 @@ public class StoreOverflowVO implements Serializable {
this.completeStatus = completeStatus;
}
public Integer getOwnType() {
return ownType;
}
public StoreOverflowVO setOwnType(Integer ownType) {
this.ownType = ownType;
return this;
}
public Integer getOwnerFlag() {
return ownerFlag;
}
public StoreOverflowVO setOwnerFlag(Integer ownerFlag) {
this.ownerFlag = ownerFlag;
return this;
}
public String getOwnerEntName() {
return ownerEntName;
}
public StoreOverflowVO setOwnerEntName(String ownerEntName) {
this.ownerEntName = ownerEntName;
return this;
}
@Override
public String toString() {
return "StoreOverflowVO{" +
......@@ -136,6 +178,9 @@ public class StoreOverflowVO implements Serializable {
", completeStatus=" + completeStatus +
", storeGroupName='" + storeGroupName + '\'' +
", provinces='" + provinces + '\'' +
", ownType=" + ownType +
", ownerFlag=" + ownerFlag +
", ownerEntName='" + ownerEntName + '\'' +
'}';
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment