feat: 新增虚拟支付订单与网盘链接检测功能
This commit is contained in:
@@ -27,6 +27,9 @@ public class AppResource extends BaseEntity
|
||||
@Excel(name = "封面图")
|
||||
private String showImg;
|
||||
|
||||
/** List-card thumbnail URL (not persisted). */
|
||||
private String showImgThumb;
|
||||
|
||||
/** 说明 */
|
||||
@Excel(name = "说明")
|
||||
private String explain;
|
||||
@@ -51,6 +54,13 @@ public class AppResource extends BaseEntity
|
||||
@Excel(name = "需要观看几次广告解锁")
|
||||
private Long adNumber;
|
||||
|
||||
/** 虚拟支付价格,单位分 */
|
||||
@Excel(name = "付费价格(分)")
|
||||
private Integer priceFen;
|
||||
|
||||
/** 同价格档位对应的微信虚拟道具ID(非 app_resource 表字段) */
|
||||
private String virtualProductId;
|
||||
|
||||
/** 下载次数 */
|
||||
@Excel(name = "下载次数")
|
||||
private Long downNum;
|
||||
@@ -100,6 +110,15 @@ public class AppResource extends BaseEntity
|
||||
{
|
||||
return showImg;
|
||||
}
|
||||
public void setShowImgThumb(String showImgThumb)
|
||||
{
|
||||
this.showImgThumb = showImgThumb;
|
||||
}
|
||||
|
||||
public String getShowImgThumb()
|
||||
{
|
||||
return showImgThumb;
|
||||
}
|
||||
public void setExplain(String explain)
|
||||
{
|
||||
this.explain = explain;
|
||||
@@ -145,6 +164,26 @@ public class AppResource extends BaseEntity
|
||||
{
|
||||
return adNumber;
|
||||
}
|
||||
|
||||
public Integer getPriceFen()
|
||||
{
|
||||
return priceFen;
|
||||
}
|
||||
|
||||
public void setPriceFen(Integer priceFen)
|
||||
{
|
||||
this.priceFen = priceFen;
|
||||
}
|
||||
|
||||
public String getVirtualProductId()
|
||||
{
|
||||
return virtualProductId;
|
||||
}
|
||||
|
||||
public void setVirtualProductId(String virtualProductId)
|
||||
{
|
||||
this.virtualProductId = virtualProductId;
|
||||
}
|
||||
public void setDownNum(Long downNum)
|
||||
{
|
||||
this.downNum = downNum;
|
||||
@@ -194,6 +233,8 @@ public class AppResource extends BaseEntity
|
||||
.append("isShow", getIsShow())
|
||||
.append("isAd", getIsAd())
|
||||
.append("adNumber", getAdNumber())
|
||||
.append("priceFen", getPriceFen())
|
||||
.append("virtualProductId", getVirtualProductId())
|
||||
.append("downNum", getDownNum())
|
||||
.append("weight", getWeight())
|
||||
.append("delFlag", getDelFlag())
|
||||
|
||||
Reference in New Issue
Block a user