package com.yeshi.fanli.vo.goods;
|
|
/**
|
* 转链结果跳转
|
*/
|
public class ConvertLinkJumpVO {
|
private GoodsJumpLinkVO jumpLink;
|
private Integer sourceType;
|
|
public ConvertLinkJumpVO() {
|
}
|
|
public ConvertLinkJumpVO(GoodsJumpLinkVO jumpLink, Integer sourceType) {
|
this.jumpLink = jumpLink;
|
this.sourceType = sourceType;
|
}
|
|
public GoodsJumpLinkVO getJumpLink() {
|
return jumpLink;
|
}
|
|
public void setJumpLink(GoodsJumpLinkVO jumpLink) {
|
this.jumpLink = jumpLink;
|
}
|
|
public Integer getSourceType() {
|
return sourceType;
|
}
|
|
public void setSourceType(Integer sourceType) {
|
this.sourceType = sourceType;
|
}
|
}
|