init
This commit is contained in:
@@ -0,0 +1,82 @@
|
||||
package com.ruoyi.app.domain;
|
||||
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 广告点击记录对象 app_ad_record
|
||||
*
|
||||
* @author yimo
|
||||
* @date 2024-04-07
|
||||
*/
|
||||
public class AppAdRecord extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** id */
|
||||
private Long id;
|
||||
|
||||
/** 点击用户 */
|
||||
@Excel(name = "点击用户")
|
||||
private Long userId;
|
||||
|
||||
/** 点击时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "点击时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date integralTime;
|
||||
|
||||
/** 广告类型 */
|
||||
@Excel(name = "广告类型")
|
||||
private Long adType;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setUserId(Long userId)
|
||||
{
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public Long getUserId()
|
||||
{
|
||||
return userId;
|
||||
}
|
||||
public void setIntegralTime(Date integralTime)
|
||||
{
|
||||
this.integralTime = integralTime;
|
||||
}
|
||||
|
||||
public Date getIntegralTime()
|
||||
{
|
||||
return integralTime;
|
||||
}
|
||||
public void setAdType(Long adType)
|
||||
{
|
||||
this.adType = adType;
|
||||
}
|
||||
|
||||
public Long getAdType()
|
||||
{
|
||||
return adType;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("userId", getUserId())
|
||||
.append("integralTime", getIntegralTime())
|
||||
.append("adType", getAdType())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,241 @@
|
||||
package com.ruoyi.app.domain;
|
||||
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 文章对象 app_blog_article
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2024-04-07
|
||||
*/
|
||||
public class AppBlogArticle extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** id */
|
||||
private Long id;
|
||||
|
||||
/** 文章标题 */
|
||||
@Excel(name = "文章标题")
|
||||
private String title;
|
||||
|
||||
/** 文章内容 */
|
||||
@Excel(name = "文章内容")
|
||||
private String contentInfo;
|
||||
|
||||
/** 文章类型 */
|
||||
@Excel(name = "文章类型")
|
||||
private Long articleType;
|
||||
|
||||
/** 搜素关键字 */
|
||||
@Excel(name = "搜素关键字")
|
||||
private String keyword;
|
||||
|
||||
/** 封面图url */
|
||||
@Excel(name = "封面图url")
|
||||
private String showImg;
|
||||
|
||||
/** 关联已有资源(关联app_resource id) */
|
||||
@Excel(name = "关联已有资源", readConverterExp = "关=联app_resource,i=d")
|
||||
private Long appResourceId;
|
||||
|
||||
/** 游览次数 */
|
||||
@Excel(name = "游览次数")
|
||||
private Long lookNumber;
|
||||
|
||||
/** 点赞次数 */
|
||||
@Excel(name = "点赞次数")
|
||||
private Long loveNumber;
|
||||
|
||||
/** 是否为推荐文章 */
|
||||
@Excel(name = "是否为推荐文章")
|
||||
private Long isRecommendation;
|
||||
|
||||
/** 是否隐藏(0代表存在 1代表删除) */
|
||||
@Excel(name = "是否隐藏", readConverterExp = "0=代表存在,1=代表删除")
|
||||
private Long isShow;
|
||||
|
||||
/** 是否需要广告(0代表否 1代表是) */
|
||||
@Excel(name = "是否需要广告", readConverterExp = "0=代表否,1=代表是")
|
||||
private Long isAd;
|
||||
|
||||
/** 需要观看几次广告解锁 */
|
||||
@Excel(name = "需要观看几次广告解锁")
|
||||
private Long adNumber;
|
||||
|
||||
/** 删除标志(0代表存在 1代表删除) */
|
||||
private Long delFlag;
|
||||
|
||||
/** 排序字段 */
|
||||
private String orderType;
|
||||
/** 权重 */
|
||||
@Excel(name = "权重")
|
||||
private Long weight;
|
||||
|
||||
public String getOrderType() {
|
||||
return orderType;
|
||||
}
|
||||
|
||||
public void setOrderType(String orderType) {
|
||||
this.orderType = orderType;
|
||||
}
|
||||
|
||||
public Long getWeight() {
|
||||
return weight;
|
||||
}
|
||||
|
||||
public void setWeight(Long weight) {
|
||||
this.weight = weight;
|
||||
}
|
||||
|
||||
public String getKeyword() {
|
||||
return keyword;
|
||||
}
|
||||
|
||||
public void setKeyword(String keyword) {
|
||||
this.keyword = keyword;
|
||||
}
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setTitle(String title)
|
||||
{
|
||||
this.title = title;
|
||||
}
|
||||
|
||||
public String getTitle()
|
||||
{
|
||||
return title;
|
||||
}
|
||||
public void setContentInfo(String contentInfo)
|
||||
{
|
||||
this.contentInfo = contentInfo;
|
||||
}
|
||||
|
||||
public String getContentInfo()
|
||||
{
|
||||
return contentInfo;
|
||||
}
|
||||
public void setArticleType(Long articleType)
|
||||
{
|
||||
this.articleType = articleType;
|
||||
}
|
||||
|
||||
public Long getArticleType()
|
||||
{
|
||||
return articleType;
|
||||
}
|
||||
public void setShowImg(String showImg)
|
||||
{
|
||||
this.showImg = showImg;
|
||||
}
|
||||
|
||||
public String getShowImg()
|
||||
{
|
||||
return showImg;
|
||||
}
|
||||
public void setAppResourceId(Long appResourceId)
|
||||
{
|
||||
this.appResourceId = appResourceId;
|
||||
}
|
||||
|
||||
public Long getAppResourceId()
|
||||
{
|
||||
return appResourceId;
|
||||
}
|
||||
public void setLookNumber(Long lookNumber)
|
||||
{
|
||||
this.lookNumber = lookNumber;
|
||||
}
|
||||
|
||||
public Long getLookNumber()
|
||||
{
|
||||
return lookNumber;
|
||||
}
|
||||
public void setLoveNumber(Long loveNumber)
|
||||
{
|
||||
this.loveNumber = loveNumber;
|
||||
}
|
||||
|
||||
public Long getLoveNumber()
|
||||
{
|
||||
return loveNumber;
|
||||
}
|
||||
public void setIsRecommendation(Long isRecommendation)
|
||||
{
|
||||
this.isRecommendation = isRecommendation;
|
||||
}
|
||||
|
||||
public Long getIsRecommendation()
|
||||
{
|
||||
return isRecommendation;
|
||||
}
|
||||
public void setIsShow(Long isShow)
|
||||
{
|
||||
this.isShow = isShow;
|
||||
}
|
||||
|
||||
public Long getIsShow()
|
||||
{
|
||||
return isShow;
|
||||
}
|
||||
public void setIsAd(Long isAd)
|
||||
{
|
||||
this.isAd = isAd;
|
||||
}
|
||||
|
||||
public Long getIsAd()
|
||||
{
|
||||
return isAd;
|
||||
}
|
||||
public void setAdNumber(Long adNumber)
|
||||
{
|
||||
this.adNumber = adNumber;
|
||||
}
|
||||
|
||||
public Long getAdNumber()
|
||||
{
|
||||
return adNumber;
|
||||
}
|
||||
public void setDelFlag(Long delFlag)
|
||||
{
|
||||
this.delFlag = delFlag;
|
||||
}
|
||||
|
||||
public Long getDelFlag()
|
||||
{
|
||||
return delFlag;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("title", getTitle())
|
||||
.append("contentInfo", getContentInfo())
|
||||
.append("articleType", getArticleType())
|
||||
.append("showImg", getShowImg())
|
||||
.append("appResourceId", getAppResourceId())
|
||||
.append("lookNumber", getLookNumber())
|
||||
.append("loveNumber", getLoveNumber())
|
||||
.append("isRecommendation", getIsRecommendation())
|
||||
.append("isShow", getIsShow())
|
||||
.append("isAd", getIsAd())
|
||||
.append("adNumber", getAdNumber())
|
||||
.append("delFlag", getDelFlag())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("remark", getRemark())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
80
ruoyi-system/src/main/java/com/ruoyi/app/domain/AppCami.java
Normal file
80
ruoyi-system/src/main/java/com/ruoyi/app/domain/AppCami.java
Normal file
@@ -0,0 +1,80 @@
|
||||
package com.ruoyi.app.domain;
|
||||
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 资源卡密对象 app_cami
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2024-06-19
|
||||
*/
|
||||
public class AppCami extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** id */
|
||||
private Long id;
|
||||
|
||||
/** 卡密 */
|
||||
@Excel(name = "卡密")
|
||||
private String cami;
|
||||
|
||||
/** 卡密类型 */
|
||||
@Excel(name = "卡密类型")
|
||||
private Long camiTyep;
|
||||
|
||||
/** 是否使用 */
|
||||
@Excel(name = "是否使用")
|
||||
private Long delFlag;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setCami(String cami)
|
||||
{
|
||||
this.cami = cami;
|
||||
}
|
||||
|
||||
public String getCami()
|
||||
{
|
||||
return cami;
|
||||
}
|
||||
public void setCamiTyep(Long camiTyep)
|
||||
{
|
||||
this.camiTyep = camiTyep;
|
||||
}
|
||||
|
||||
public Long getCamiTyep()
|
||||
{
|
||||
return camiTyep;
|
||||
}
|
||||
public void setDelFlag(Long delFlag)
|
||||
{
|
||||
this.delFlag = delFlag;
|
||||
}
|
||||
|
||||
public Long getDelFlag()
|
||||
{
|
||||
return delFlag;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("cami", getCami())
|
||||
.append("camiTyep", getCamiTyep())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("delFlag", getDelFlag())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,66 @@
|
||||
package com.ruoyi.app.domain;
|
||||
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
|
||||
/**
|
||||
* 短剧资源对象 app_duanju
|
||||
*
|
||||
* @author yimo
|
||||
* @date 2024-06-07
|
||||
*/
|
||||
public class AppDuanju extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** id */
|
||||
private Long id;
|
||||
|
||||
/** 短句名称 */
|
||||
@Excel(name = "短句名称")
|
||||
private String bjName;
|
||||
|
||||
/** 短句链接 */
|
||||
@Excel(name = "短句链接")
|
||||
private String djUrl;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setBjName(String bjName)
|
||||
{
|
||||
this.bjName = bjName;
|
||||
}
|
||||
|
||||
public String getBjName()
|
||||
{
|
||||
return bjName;
|
||||
}
|
||||
public void setDjUrl(String djUrl)
|
||||
{
|
||||
this.djUrl = djUrl;
|
||||
}
|
||||
|
||||
public String getDjUrl()
|
||||
{
|
||||
return djUrl;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("bjName", getBjName())
|
||||
.append("djUrl", getDjUrl())
|
||||
.append("createTime", getCreateTime())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,147 @@
|
||||
package com.ruoyi.app.domain;
|
||||
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 积分商品对象 app_exchange_goods
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2024-04-07
|
||||
*/
|
||||
public class AppExchangeGoods extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** id */
|
||||
private Long id;
|
||||
|
||||
/** 商品名称 */
|
||||
@Excel(name = "商品名称")
|
||||
private String goodsName;
|
||||
|
||||
/** 封面图 */
|
||||
@Excel(name = "封面图")
|
||||
private String goodsImg;
|
||||
|
||||
/** 商品类型 */
|
||||
@Excel(name = "商品类型")
|
||||
private Long goodsType;
|
||||
|
||||
/** 兑换所需积分 */
|
||||
@Excel(name = "兑换所需积分")
|
||||
private Long goodsExchange;
|
||||
|
||||
/** 是否火爆(0代表否 1代表是) */
|
||||
@Excel(name = "是否火爆", readConverterExp = "0=代表否,1=代表是")
|
||||
private Long isHot;
|
||||
|
||||
/** 删除标志(0代表存在 1代表删除) */
|
||||
private Long delFlag;
|
||||
|
||||
/** 是否有库存卡密 */
|
||||
@Excel(name = "是否有库存卡密")
|
||||
private Long isCami;
|
||||
|
||||
/** 卡密类型 */
|
||||
@Excel(name = "卡密类型")
|
||||
private Long camiType;
|
||||
|
||||
public Long getIsCami() {
|
||||
return isCami;
|
||||
}
|
||||
|
||||
public void setIsCami(Long isCami) {
|
||||
this.isCami = isCami;
|
||||
}
|
||||
|
||||
public Long getCamiType() {
|
||||
return camiType;
|
||||
}
|
||||
|
||||
public void setCamiType(Long camiType) {
|
||||
this.camiType = camiType;
|
||||
}
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setGoodsName(String goodsName)
|
||||
{
|
||||
this.goodsName = goodsName;
|
||||
}
|
||||
|
||||
public String getGoodsName()
|
||||
{
|
||||
return goodsName;
|
||||
}
|
||||
public void setGoodsImg(String goodsImg)
|
||||
{
|
||||
this.goodsImg = goodsImg;
|
||||
}
|
||||
|
||||
public String getGoodsImg()
|
||||
{
|
||||
return goodsImg;
|
||||
}
|
||||
public void setGoodsType(Long goodsType)
|
||||
{
|
||||
this.goodsType = goodsType;
|
||||
}
|
||||
|
||||
public Long getGoodsType()
|
||||
{
|
||||
return goodsType;
|
||||
}
|
||||
public void setGoodsExchange(Long goodsExchange)
|
||||
{
|
||||
this.goodsExchange = goodsExchange;
|
||||
}
|
||||
|
||||
public Long getGoodsExchange()
|
||||
{
|
||||
return goodsExchange;
|
||||
}
|
||||
public void setIsHot(Long isHot)
|
||||
{
|
||||
this.isHot = isHot;
|
||||
}
|
||||
|
||||
public Long getIsHot()
|
||||
{
|
||||
return isHot;
|
||||
}
|
||||
public void setDelFlag(Long delFlag)
|
||||
{
|
||||
this.delFlag = delFlag;
|
||||
}
|
||||
|
||||
public Long getDelFlag()
|
||||
{
|
||||
return delFlag;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("goodsName", getGoodsName())
|
||||
.append("goodsImg", getGoodsImg())
|
||||
.append("goodsType", getGoodsType())
|
||||
.append("goodsExchange", getGoodsExchange())
|
||||
.append("isHot", getIsHot())
|
||||
.append("delFlag", getDelFlag())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("remark", getRemark())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,144 @@
|
||||
package com.ruoyi.app.domain;
|
||||
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 兑换记录对象 app_exchange_records
|
||||
*
|
||||
* @author yimo
|
||||
* @date 2024-04-11
|
||||
*/
|
||||
public class AppExchangeRecords extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** id */
|
||||
private Long id;
|
||||
|
||||
/** 商品名称 */
|
||||
@Excel(name = "商品名称")
|
||||
private String goodsName;
|
||||
|
||||
/** 兑换人 */
|
||||
@Excel(name = "兑换人")
|
||||
private String recordsUserId;
|
||||
|
||||
/** 使用积分数 */
|
||||
@Excel(name = "使用积分数")
|
||||
private Long recordsNumber;
|
||||
|
||||
/** 兑换时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@Excel(name = "兑换时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date recordsTime;
|
||||
|
||||
/** 兑换码 */
|
||||
@Excel(name = "兑换码")
|
||||
private String redemptionCode;
|
||||
|
||||
/** 是否兑换 */
|
||||
@Excel(name = "是否兑换")
|
||||
private String redemptionState;
|
||||
|
||||
/** 卡密 */
|
||||
private Long isCami;
|
||||
private Long camiType;
|
||||
|
||||
public Long getIsCami() {
|
||||
return isCami;
|
||||
}
|
||||
|
||||
public void setIsCami(Long isCami) {
|
||||
this.isCami = isCami;
|
||||
}
|
||||
|
||||
public Long getCamiType() {
|
||||
return camiType;
|
||||
}
|
||||
|
||||
public void setCamiType(Long camiType) {
|
||||
this.camiType = camiType;
|
||||
}
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setGoodsName(String goodsName)
|
||||
{
|
||||
this.goodsName = goodsName;
|
||||
}
|
||||
|
||||
public String getGoodsName()
|
||||
{
|
||||
return goodsName;
|
||||
}
|
||||
public void setRecordsUserId(String recordsUserId)
|
||||
{
|
||||
this.recordsUserId = recordsUserId;
|
||||
}
|
||||
|
||||
public String getRecordsUserId()
|
||||
{
|
||||
return recordsUserId;
|
||||
}
|
||||
public void setRecordsNumber(Long recordsNumber)
|
||||
{
|
||||
this.recordsNumber = recordsNumber;
|
||||
}
|
||||
|
||||
public Long getRecordsNumber()
|
||||
{
|
||||
return recordsNumber;
|
||||
}
|
||||
public void setRecordsTime(Date recordsTime)
|
||||
{
|
||||
this.recordsTime = recordsTime;
|
||||
}
|
||||
|
||||
public Date getRecordsTime()
|
||||
{
|
||||
return recordsTime;
|
||||
}
|
||||
public void setRedemptionCode(String redemptionCode)
|
||||
{
|
||||
this.redemptionCode = redemptionCode;
|
||||
}
|
||||
|
||||
public String getRedemptionCode()
|
||||
{
|
||||
return redemptionCode;
|
||||
}
|
||||
public void setRedemptionState(String redemptionState)
|
||||
{
|
||||
this.redemptionState = redemptionState;
|
||||
}
|
||||
|
||||
public String getRedemptionState()
|
||||
{
|
||||
return redemptionState;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("goodsName", getGoodsName())
|
||||
.append("recordsUserId", getRecordsUserId())
|
||||
.append("recordsNumber", getRecordsNumber())
|
||||
.append("recordsTime", getRecordsTime())
|
||||
.append("redemptionCode", getRedemptionCode())
|
||||
.append("redemptionState", getRedemptionState())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,148 @@
|
||||
package com.ruoyi.app.domain;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 积分记录对象 app_integral_record
|
||||
*
|
||||
* @author yimo
|
||||
* @date 2024-04-07
|
||||
*/
|
||||
public class AppIntegralRecord extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 来源
|
||||
*/
|
||||
@Excel(name = "来源")
|
||||
private String source;
|
||||
|
||||
/**
|
||||
* 是否增加(0代表增加 1代表减少)
|
||||
*/
|
||||
@Excel(name = "是否增加", readConverterExp = "0=代表增加,1=代表减少")
|
||||
private Long isAdd;
|
||||
|
||||
/**
|
||||
* 增减分数
|
||||
*/
|
||||
@Excel(name = "增减分数")
|
||||
private Long integralNumber;
|
||||
|
||||
/**
|
||||
* 记录用户
|
||||
*/
|
||||
@Excel(name = "记录用户")
|
||||
private Long userId;
|
||||
|
||||
/**
|
||||
* 记录时间
|
||||
*/
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@Excel(name = "记录时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date integralTime;
|
||||
private Long fId;
|
||||
private Long resourceId;
|
||||
|
||||
/**
|
||||
* 资源标题
|
||||
*/
|
||||
private String resourceTitle;
|
||||
|
||||
public Long getfId() {
|
||||
return fId;
|
||||
}
|
||||
|
||||
public void setfId(Long fId) {
|
||||
this.fId = fId;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setSource(String source) {
|
||||
this.source = source;
|
||||
}
|
||||
|
||||
public String getSource() {
|
||||
return source;
|
||||
}
|
||||
|
||||
public void setIsAdd(Long isAdd) {
|
||||
this.isAdd = isAdd;
|
||||
}
|
||||
|
||||
public Long getIsAdd() {
|
||||
return isAdd;
|
||||
}
|
||||
|
||||
public void setIntegralNumber(Long integralNumber) {
|
||||
this.integralNumber = integralNumber;
|
||||
}
|
||||
|
||||
public Long getIntegralNumber() {
|
||||
return integralNumber;
|
||||
}
|
||||
|
||||
public void setUserId(Long userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public Long getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setIntegralTime(Date integralTime) {
|
||||
this.integralTime = integralTime;
|
||||
}
|
||||
|
||||
public Date getIntegralTime() {
|
||||
return integralTime;
|
||||
}
|
||||
|
||||
public Long getResourceId() {
|
||||
return resourceId;
|
||||
}
|
||||
|
||||
public void setResourceId(Long resourceId) {
|
||||
this.resourceId = resourceId;
|
||||
}
|
||||
|
||||
public String getResourceTitle() {
|
||||
return resourceTitle;
|
||||
}
|
||||
|
||||
public void setResourceTitle(String resourceTitle) {
|
||||
this.resourceTitle = resourceTitle;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("source", getSource())
|
||||
.append("isAdd", getIsAdd())
|
||||
.append("integralNumber", getIntegralNumber())
|
||||
.append("userId", getUserId())
|
||||
.append("resourceId", getResourceId())
|
||||
.append("resourceTitle", getResourceTitle())
|
||||
.append("integralTime", getIntegralTime())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,107 @@
|
||||
package com.ruoyi.app.domain;
|
||||
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 抽奖礼品配置对象 app_lottery_goods
|
||||
*
|
||||
* @author yimo
|
||||
* @date 2024-06-19
|
||||
*/
|
||||
public class AppLotteryGoods extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** id */
|
||||
private Long id;
|
||||
|
||||
/** 展示图 */
|
||||
@Excel(name = "展示图")
|
||||
private String image;
|
||||
|
||||
/** 礼品名称 */
|
||||
@Excel(name = "礼品名称")
|
||||
private String name;
|
||||
|
||||
/** 获得概率 */
|
||||
@Excel(name = "获得概率")
|
||||
private Long percentage;
|
||||
|
||||
/** 积分奖励 */
|
||||
@Excel(name = "积分奖励")
|
||||
private Long reward;
|
||||
|
||||
/** 礼品索引 */
|
||||
@Excel(name = "礼品索引")
|
||||
private Long indexNum;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setImage(String image)
|
||||
{
|
||||
this.image = image;
|
||||
}
|
||||
|
||||
public String getImage()
|
||||
{
|
||||
return image;
|
||||
}
|
||||
public void setName(String name)
|
||||
{
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getName()
|
||||
{
|
||||
return name;
|
||||
}
|
||||
public void setPercentage(Long percentage)
|
||||
{
|
||||
this.percentage = percentage;
|
||||
}
|
||||
|
||||
public Long getPercentage()
|
||||
{
|
||||
return percentage;
|
||||
}
|
||||
public void setReward(Long reward)
|
||||
{
|
||||
this.reward = reward;
|
||||
}
|
||||
|
||||
public Long getReward()
|
||||
{
|
||||
return reward;
|
||||
}
|
||||
public void setIndexNum(Long indexNum)
|
||||
{
|
||||
this.indexNum = indexNum;
|
||||
}
|
||||
|
||||
public Long getIndexNum()
|
||||
{
|
||||
return indexNum;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("image", getImage())
|
||||
.append("name", getName())
|
||||
.append("percentage", getPercentage())
|
||||
.append("reward", getReward())
|
||||
.append("indexNum", getIndexNum())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,93 @@
|
||||
package com.ruoyi.app.domain;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 抽奖记录对象 app_lottery_log
|
||||
*
|
||||
* @author yimo
|
||||
* @date 2024-06-20
|
||||
*/
|
||||
public class AppLotteryLog extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** id */
|
||||
private Long id;
|
||||
|
||||
/** 中奖礼品id */
|
||||
@Excel(name = "中奖礼品id")
|
||||
private Long goodId;
|
||||
|
||||
/** 中奖人id */
|
||||
@Excel(name = "中奖人id")
|
||||
private Long lotteryUserId;
|
||||
|
||||
/** 中奖时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "中奖时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date lotteryTime;
|
||||
|
||||
private String name;
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setGoodId(Long goodId)
|
||||
{
|
||||
this.goodId = goodId;
|
||||
}
|
||||
|
||||
public Long getGoodId()
|
||||
{
|
||||
return goodId;
|
||||
}
|
||||
public void setLotteryUserId(Long lotteryUserId)
|
||||
{
|
||||
this.lotteryUserId = lotteryUserId;
|
||||
}
|
||||
|
||||
public Long getLotteryUserId()
|
||||
{
|
||||
return lotteryUserId;
|
||||
}
|
||||
public void setLotteryTime(Date lotteryTime)
|
||||
{
|
||||
this.lotteryTime = lotteryTime;
|
||||
}
|
||||
|
||||
public Date getLotteryTime()
|
||||
{
|
||||
return lotteryTime;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("goodId", getGoodId())
|
||||
.append("lotteryUserId", getLotteryUserId())
|
||||
.append("lotteryTime", getLotteryTime())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
153
ruoyi-system/src/main/java/com/ruoyi/app/domain/AppPayOrder.java
Normal file
153
ruoyi-system/src/main/java/com/ruoyi/app/domain/AppPayOrder.java
Normal file
@@ -0,0 +1,153 @@
|
||||
package com.ruoyi.app.domain;
|
||||
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 支付订单对象 app_pay_order
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2025-01-13
|
||||
*/
|
||||
public class AppPayOrder extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 主键ID */
|
||||
private Long id;
|
||||
|
||||
/** 商户单号 */
|
||||
@Excel(name = "商户单号")
|
||||
private String orderNo;
|
||||
|
||||
/** 交易单号 */
|
||||
@Excel(name = "交易单号")
|
||||
private String tradeNo;
|
||||
|
||||
/** 用户ID */
|
||||
@Excel(name = "用户ID")
|
||||
private Long userId;
|
||||
|
||||
/** openid */
|
||||
@Excel(name = "openid")
|
||||
private String openId;
|
||||
|
||||
/** 支付金额(分) */
|
||||
@Excel(name = "支付金额(分)")
|
||||
private Long amount;
|
||||
|
||||
/** 积分数量 */
|
||||
@Excel(name = "积分数量")
|
||||
private Long points;
|
||||
|
||||
/** 支付状态 */
|
||||
@Excel(name = "支付状态")
|
||||
private Integer status;
|
||||
|
||||
/** 支付时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "支付时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date payTime;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setOrderNo(String orderNo)
|
||||
{
|
||||
this.orderNo = orderNo;
|
||||
}
|
||||
|
||||
public String getOrderNo()
|
||||
{
|
||||
return orderNo;
|
||||
}
|
||||
public void setTradeNo(String tradeNo)
|
||||
{
|
||||
this.tradeNo = tradeNo;
|
||||
}
|
||||
|
||||
public String getTradeNo()
|
||||
{
|
||||
return tradeNo;
|
||||
}
|
||||
public void setUserId(Long userId)
|
||||
{
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public Long getUserId()
|
||||
{
|
||||
return userId;
|
||||
}
|
||||
public void setOpenId(String openId)
|
||||
{
|
||||
this.openId = openId;
|
||||
}
|
||||
|
||||
public String getOpenId()
|
||||
{
|
||||
return openId;
|
||||
}
|
||||
public void setAmount(Long amount)
|
||||
{
|
||||
this.amount = amount;
|
||||
}
|
||||
|
||||
public Long getAmount()
|
||||
{
|
||||
return amount;
|
||||
}
|
||||
public void setPoints(Long points)
|
||||
{
|
||||
this.points = points;
|
||||
}
|
||||
|
||||
public Long getPoints()
|
||||
{
|
||||
return points;
|
||||
}
|
||||
public void setStatus(Integer status)
|
||||
{
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Integer getStatus()
|
||||
{
|
||||
return status;
|
||||
}
|
||||
public void setPayTime(Date payTime)
|
||||
{
|
||||
this.payTime = payTime;
|
||||
}
|
||||
|
||||
public Date getPayTime()
|
||||
{
|
||||
return payTime;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("orderNo", getOrderNo())
|
||||
.append("tradeNo", getTradeNo())
|
||||
.append("userId", getUserId())
|
||||
.append("openId", getOpenId())
|
||||
.append("amount", getAmount())
|
||||
.append("points", getPoints())
|
||||
.append("status", getStatus())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("payTime", getPayTime())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
206
ruoyi-system/src/main/java/com/ruoyi/app/domain/AppResource.java
Normal file
206
ruoyi-system/src/main/java/com/ruoyi/app/domain/AppResource.java
Normal file
@@ -0,0 +1,206 @@
|
||||
package com.ruoyi.app.domain;
|
||||
|
||||
import java.util.List;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 资源对象 app_resource
|
||||
*
|
||||
* @author yimo
|
||||
* @date 2024-04-08
|
||||
*/
|
||||
public class AppResource extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** id */
|
||||
private Long id;
|
||||
|
||||
/** 资源标题 */
|
||||
@Excel(name = "资源标题")
|
||||
private String resourceTitle;
|
||||
|
||||
/** 封面图 */
|
||||
@Excel(name = "封面图")
|
||||
private String showImg;
|
||||
|
||||
/** 说明 */
|
||||
@Excel(name = "说明")
|
||||
private String explain;
|
||||
|
||||
/** 资源类型 */
|
||||
@Excel(name = "资源类型")
|
||||
private Long resourceType;
|
||||
|
||||
/** 搜素关键字 */
|
||||
@Excel(name = "搜素关键字")
|
||||
private String keyword;
|
||||
|
||||
/** 是否隐藏(0代表存在 1代表删除) */
|
||||
@Excel(name = "是否隐藏", readConverterExp = "0=代表存在,1=代表删除")
|
||||
private Long isShow;
|
||||
|
||||
/** 是否需要广告(0代表否 1代表是) */
|
||||
@Excel(name = "是否需要广告", readConverterExp = "0=代表否,1=代表是")
|
||||
private Long isAd;
|
||||
|
||||
/** 需要观看几次广告解锁 */
|
||||
@Excel(name = "需要观看几次广告解锁")
|
||||
private Long adNumber;
|
||||
|
||||
/** 下载次数 */
|
||||
@Excel(name = "下载次数")
|
||||
private Long downNum;
|
||||
|
||||
/** 权重 */
|
||||
@Excel(name = "权重")
|
||||
private Long weight;
|
||||
|
||||
/** 删除标志(0代表存在 1代表删除) */
|
||||
private Long delFlag;
|
||||
|
||||
/** 资源列信息 */
|
||||
private List<AppResourceList> appResourceListList;
|
||||
|
||||
public String getKeyword() {
|
||||
return keyword;
|
||||
}
|
||||
|
||||
public void setKeyword(String keyword) {
|
||||
this.keyword = keyword;
|
||||
}
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setResourceTitle(String resourceTitle)
|
||||
{
|
||||
this.resourceTitle = resourceTitle;
|
||||
}
|
||||
|
||||
public String getResourceTitle()
|
||||
{
|
||||
return resourceTitle;
|
||||
}
|
||||
public void setShowImg(String showImg)
|
||||
{
|
||||
this.showImg = showImg;
|
||||
}
|
||||
|
||||
public String getShowImg()
|
||||
{
|
||||
return showImg;
|
||||
}
|
||||
public void setExplain(String explain)
|
||||
{
|
||||
this.explain = explain;
|
||||
}
|
||||
|
||||
public String getExplain()
|
||||
{
|
||||
return explain;
|
||||
}
|
||||
public void setResourceType(Long resourceType)
|
||||
{
|
||||
this.resourceType = resourceType;
|
||||
}
|
||||
|
||||
public Long getResourceType()
|
||||
{
|
||||
return resourceType;
|
||||
}
|
||||
public void setIsShow(Long isShow)
|
||||
{
|
||||
this.isShow = isShow;
|
||||
}
|
||||
|
||||
public Long getIsShow()
|
||||
{
|
||||
return isShow;
|
||||
}
|
||||
public void setIsAd(Long isAd)
|
||||
{
|
||||
this.isAd = isAd;
|
||||
}
|
||||
|
||||
public Long getIsAd()
|
||||
{
|
||||
return isAd;
|
||||
}
|
||||
public void setAdNumber(Long adNumber)
|
||||
{
|
||||
this.adNumber = adNumber;
|
||||
}
|
||||
|
||||
public Long getAdNumber()
|
||||
{
|
||||
return adNumber;
|
||||
}
|
||||
public void setDownNum(Long downNum)
|
||||
{
|
||||
this.downNum = downNum;
|
||||
}
|
||||
|
||||
public Long getDownNum()
|
||||
{
|
||||
return downNum;
|
||||
}
|
||||
public void setWeight(Long weight)
|
||||
{
|
||||
this.weight = weight;
|
||||
}
|
||||
|
||||
public Long getWeight()
|
||||
{
|
||||
return weight;
|
||||
}
|
||||
public void setDelFlag(Long delFlag)
|
||||
{
|
||||
this.delFlag = delFlag;
|
||||
}
|
||||
|
||||
public Long getDelFlag()
|
||||
{
|
||||
return delFlag;
|
||||
}
|
||||
|
||||
public List<AppResourceList> getAppResourceListList()
|
||||
{
|
||||
return appResourceListList;
|
||||
}
|
||||
|
||||
public void setAppResourceListList(List<AppResourceList> appResourceListList)
|
||||
{
|
||||
this.appResourceListList = appResourceListList;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("resourceTitle", getResourceTitle())
|
||||
.append("showImg", getShowImg())
|
||||
.append("explain", getExplain())
|
||||
.append("resourceType", getResourceType())
|
||||
.append("isShow", getIsShow())
|
||||
.append("isAd", getIsAd())
|
||||
.append("adNumber", getAdNumber())
|
||||
.append("downNum", getDownNum())
|
||||
.append("weight", getWeight())
|
||||
.append("delFlag", getDelFlag())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("remark", getRemark())
|
||||
.append("appResourceListList", getAppResourceListList())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,93 @@
|
||||
package com.ruoyi.app.domain;
|
||||
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 资源列对象 app_resource_list
|
||||
*
|
||||
* @author yimo
|
||||
* @date 2024-04-07
|
||||
*/
|
||||
public class AppResourceList extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** id */
|
||||
private Long id;
|
||||
|
||||
/** 资源名称 */
|
||||
@Excel(name = "资源名称")
|
||||
private String listName;
|
||||
|
||||
/** 资源地址 */
|
||||
@Excel(name = "资源地址")
|
||||
private String listUrl;
|
||||
|
||||
/** 访问密码 */
|
||||
@Excel(name = "访问密码")
|
||||
private String password;
|
||||
|
||||
/** 关联主表app_resource */
|
||||
@Excel(name = "关联主表app_resource")
|
||||
private Long appResourceId;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setListName(String listName)
|
||||
{
|
||||
this.listName = listName;
|
||||
}
|
||||
|
||||
public String getListName()
|
||||
{
|
||||
return listName;
|
||||
}
|
||||
public void setListUrl(String listUrl)
|
||||
{
|
||||
this.listUrl = listUrl;
|
||||
}
|
||||
|
||||
public String getListUrl()
|
||||
{
|
||||
return listUrl;
|
||||
}
|
||||
public void setPassword(String password)
|
||||
{
|
||||
this.password = password;
|
||||
}
|
||||
|
||||
public String getPassword()
|
||||
{
|
||||
return password;
|
||||
}
|
||||
public void setAppResourceId(Long appResourceId)
|
||||
{
|
||||
this.appResourceId = appResourceId;
|
||||
}
|
||||
|
||||
public Long getAppResourceId()
|
||||
{
|
||||
return appResourceId;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("listName", getListName())
|
||||
.append("listUrl", getListUrl())
|
||||
.append("password", getPassword())
|
||||
.append("appResourceId", getAppResourceId())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,80 @@
|
||||
package com.ruoyi.app.domain;
|
||||
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 分享资源对象 app_resource_new
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2025-06-30
|
||||
*/
|
||||
public class AppResourceNew extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** id */
|
||||
private Long id;
|
||||
|
||||
/** 资源名称 */
|
||||
@Excel(name = "资源名称")
|
||||
private String resourceName;
|
||||
|
||||
/** 资源链接 */
|
||||
@Excel(name = "资源链接")
|
||||
private String resourceUrl;
|
||||
|
||||
/** 复制次数 */
|
||||
@Excel(name = "复制次数")
|
||||
private Integer copyNumber;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setResourceName(String resourceName)
|
||||
{
|
||||
this.resourceName = resourceName;
|
||||
}
|
||||
|
||||
public String getResourceName()
|
||||
{
|
||||
return resourceName;
|
||||
}
|
||||
public void setResourceUrl(String resourceUrl)
|
||||
{
|
||||
this.resourceUrl = resourceUrl;
|
||||
}
|
||||
|
||||
public String getResourceUrl()
|
||||
{
|
||||
return resourceUrl;
|
||||
}
|
||||
public void setCopyNumber(Integer copyNumber)
|
||||
{
|
||||
this.copyNumber = copyNumber;
|
||||
}
|
||||
|
||||
public Integer getCopyNumber()
|
||||
{
|
||||
return copyNumber;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("resourceName", getResourceName())
|
||||
.append("resourceUrl", getResourceUrl())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("copyNumber", getCopyNumber())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,149 @@
|
||||
package com.ruoyi.app.domain;
|
||||
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 壁纸对象 app_wallpaper
|
||||
*
|
||||
* @author yimo
|
||||
* @date 2024-04-19
|
||||
*/
|
||||
public class AppWallpaper extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** id */
|
||||
private Long id;
|
||||
|
||||
/** 壁纸地址 */
|
||||
@Excel(name = "壁纸地址")
|
||||
private String imgUrl;
|
||||
|
||||
/** 是否需要广告(0代表否 1代表是) */
|
||||
@Excel(name = "是否需要广告", readConverterExp = "0=代表否,1=代表是")
|
||||
private Long isAd;
|
||||
|
||||
/** 是否隐藏(0代表存在 1代表删除) */
|
||||
@Excel(name = "是否隐藏", readConverterExp = "0=代表存在,1=代表删除")
|
||||
private String isShow;
|
||||
|
||||
/** 下载次数 */
|
||||
@Excel(name = "下载次数")
|
||||
private String downNum;
|
||||
|
||||
/** 搜索关键字 */
|
||||
@Excel(name = "搜索关键字")
|
||||
private String keyword;
|
||||
|
||||
/** 壁纸类型 */
|
||||
@Excel(name = "壁纸类型")
|
||||
private Long wallpaperType;
|
||||
|
||||
/** 权重 */
|
||||
@Excel(name = "权重")
|
||||
private Long weight;
|
||||
|
||||
/** 压缩图地址 */
|
||||
private String compressImgUrl;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setImgUrl(String imgUrl)
|
||||
{
|
||||
this.imgUrl = imgUrl;
|
||||
}
|
||||
|
||||
public String getImgUrl()
|
||||
{
|
||||
return imgUrl;
|
||||
}
|
||||
public void setIsAd(Long isAd)
|
||||
{
|
||||
this.isAd = isAd;
|
||||
}
|
||||
|
||||
public Long getIsAd()
|
||||
{
|
||||
return isAd;
|
||||
}
|
||||
public void setIsShow(String isShow)
|
||||
{
|
||||
this.isShow = isShow;
|
||||
}
|
||||
|
||||
public String getIsShow()
|
||||
{
|
||||
return isShow;
|
||||
}
|
||||
public void setDownNum(String downNum)
|
||||
{
|
||||
this.downNum = downNum;
|
||||
}
|
||||
|
||||
public String getDownNum()
|
||||
{
|
||||
return downNum;
|
||||
}
|
||||
public void setKeyword(String keyword)
|
||||
{
|
||||
this.keyword = keyword;
|
||||
}
|
||||
|
||||
public String getKeyword()
|
||||
{
|
||||
return keyword;
|
||||
}
|
||||
public void setWallpaperType(Long wallpaperType)
|
||||
{
|
||||
this.wallpaperType = wallpaperType;
|
||||
}
|
||||
|
||||
public Long getWallpaperType()
|
||||
{
|
||||
return wallpaperType;
|
||||
}
|
||||
public void setWeight(Long weight)
|
||||
{
|
||||
this.weight = weight;
|
||||
}
|
||||
|
||||
public Long getWeight()
|
||||
{
|
||||
return weight;
|
||||
}
|
||||
public void setCompressImgUrl(String compressImgUrl)
|
||||
{
|
||||
this.compressImgUrl = compressImgUrl;
|
||||
}
|
||||
|
||||
public String getCompressImgUrl()
|
||||
{
|
||||
return compressImgUrl;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("imgUrl", getImgUrl())
|
||||
.append("isAd", getIsAd())
|
||||
.append("isShow", getIsShow())
|
||||
.append("downNum", getDownNum())
|
||||
.append("keyword", getKeyword())
|
||||
.append("wallpaperType", getWallpaperType())
|
||||
.append("weight", getWeight())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("compressImgUrl", getCompressImgUrl())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
package com.ruoyi.app.domain;
|
||||
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 待配置安全域名对象 new_download_url
|
||||
*
|
||||
* @author yimo
|
||||
* @date 2024-04-28
|
||||
*/
|
||||
public class NewDownloadUrl extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** id */
|
||||
private Long id;
|
||||
|
||||
/** 待配置域名 */
|
||||
@Excel(name = "待配置域名")
|
||||
private String httpUrl;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setHttpUrl(String httpUrl)
|
||||
{
|
||||
this.httpUrl = httpUrl;
|
||||
}
|
||||
|
||||
public String getHttpUrl()
|
||||
{
|
||||
return httpUrl;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("httpUrl", getHttpUrl())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.ruoyi.app.domain;
|
||||
|
||||
public class ShuiYinVo {
|
||||
private String url;
|
||||
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user