package com.hz.crm.dto;
|
|
/**
|
* @author fwq
|
* 标识扩展类
|
*/
|
public class IdDto extends PageDto{
|
|
/**标识父标识*/
|
private String id;
|
/**子标识*/
|
private String sonId;
|
/**上级标识*/
|
private String parentId;
|
/**分类(类型)标识*/
|
private String typeId;
|
/**门店编号*/
|
private String shopNo;
|
/**无限二维码携带参数*/
|
private String sceneCode;
|
/**his标识*/
|
private String hisId;
|
/**商品类型*/
|
private String goodsType;
|
/**标识父标识字符串逗号分隔*/
|
private String ids;
|
/**团购活动id*/
|
private String groupBuyId;
|
|
private String shopId;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getParentId() {
|
return parentId;
|
}
|
|
public void setParentId(String parentId) {
|
this.parentId = parentId;
|
}
|
|
public String getTypeId() {
|
return typeId;
|
}
|
|
public void setTypeId(String typeId) {
|
this.typeId = typeId;
|
}
|
|
public String getSonId() {
|
return sonId;
|
}
|
|
public void setSonId(String sonId) {
|
this.sonId = sonId;
|
}
|
|
public String getShopNo() {
|
return shopNo;
|
}
|
|
public void setShopNo(String shopNo) {
|
this.shopNo = shopNo;
|
}
|
|
public String getSceneCode() {
|
return sceneCode;
|
}
|
|
public void setSceneCode(String sceneCode) {
|
this.sceneCode = sceneCode;
|
}
|
|
public String getHisId() {
|
return hisId;
|
}
|
|
public void setHisId(String hisId) {
|
this.hisId = hisId;
|
}
|
|
public String getGoodsType() {
|
return goodsType;
|
}
|
|
public void setGoodsType(String goodsType) {
|
this.goodsType = goodsType;
|
}
|
|
public String getIds() {
|
return ids;
|
}
|
|
public void setIds(String ids) {
|
this.ids = ids;
|
}
|
|
public String getShopId() {
|
return shopId;
|
}
|
|
public void setShopId(String shopId) {
|
this.shopId = shopId;
|
}
|
|
public String getGroupBuyId() {
|
return groupBuyId;
|
}
|
|
public void setGroupBuyId(String groupBuyId) {
|
this.groupBuyId = groupBuyId;
|
}
|
}
|