mirror of
https://gitee.com/y_project/RuoYi-Cloud.git
synced 2026-01-31 22:11:57 +08:00
2024-09-16 注册页申请流程
This commit is contained in:
@@ -24,4 +24,9 @@ public class RedisConstant {
|
||||
* app用户设备标识
|
||||
*/
|
||||
public final static String APP_DEVICE_IDENTIFICATION = CacheConstants.PROJET + ":app:app:device:identification:";
|
||||
|
||||
/**
|
||||
* H5登录验证码
|
||||
*/
|
||||
public final static String H5_LOGIN_CACHE = CacheConstants.PROJET+"H5:login:cache:";
|
||||
}
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
package com.ruoyi.common.core.domain.http;
|
||||
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import lombok.Data;
|
||||
import com.ruoyi.common.core.annotation.Excel;
|
||||
import com.ruoyi.common.core.web.domain.BaseEntity;
|
||||
|
||||
@@ -11,6 +10,7 @@ import com.ruoyi.common.core.web.domain.BaseEntity;
|
||||
* @author ruoyi
|
||||
* @date 2024-09-15
|
||||
*/
|
||||
@Data
|
||||
public class Channel extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
@@ -26,6 +26,10 @@ public class Channel extends BaseEntity
|
||||
@Excel(name = "渠道签名")
|
||||
private String channelSign;
|
||||
|
||||
/** 渠道名称 */
|
||||
@Excel(name = "渠道名称")
|
||||
private String channelType;
|
||||
|
||||
/** 扣量比 */
|
||||
@Excel(name = "扣量比")
|
||||
private Long score;
|
||||
@@ -46,93 +50,5 @@ public class Channel extends BaseEntity
|
||||
@Excel(name = "开启关闭时段")
|
||||
private String period;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setChannelName(String channelName)
|
||||
{
|
||||
this.channelName = channelName;
|
||||
}
|
||||
|
||||
public String getChannelName()
|
||||
{
|
||||
return channelName;
|
||||
}
|
||||
public void setChannelSign(String channelSign)
|
||||
{
|
||||
this.channelSign = channelSign;
|
||||
}
|
||||
|
||||
public String getChannelSign()
|
||||
{
|
||||
return channelSign;
|
||||
}
|
||||
public void setScore(Long score)
|
||||
{
|
||||
this.score = score;
|
||||
}
|
||||
|
||||
public Long getScore()
|
||||
{
|
||||
return score;
|
||||
}
|
||||
public void setHtmlName(String htmlName)
|
||||
{
|
||||
this.htmlName = htmlName;
|
||||
}
|
||||
|
||||
public String getHtmlName()
|
||||
{
|
||||
return htmlName;
|
||||
}
|
||||
public void setHtmlLocation(String htmlLocation)
|
||||
{
|
||||
this.htmlLocation = htmlLocation;
|
||||
}
|
||||
|
||||
public String getHtmlLocation()
|
||||
{
|
||||
return htmlLocation;
|
||||
}
|
||||
public void setIps(String ips)
|
||||
{
|
||||
this.ips = ips;
|
||||
}
|
||||
|
||||
public String getIps()
|
||||
{
|
||||
return ips;
|
||||
}
|
||||
public void setPeriod(String period)
|
||||
{
|
||||
this.period = period;
|
||||
}
|
||||
|
||||
public String getPeriod()
|
||||
{
|
||||
return period;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("channelName", getChannelName())
|
||||
.append("channelSign", getChannelSign())
|
||||
.append("score", getScore())
|
||||
.append("htmlName", getHtmlName())
|
||||
.append("htmlLocation", getHtmlLocation())
|
||||
.append("ips", getIps())
|
||||
.append("period", getPeriod())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.append("remark", getRemark())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -48,6 +48,9 @@ public class Merchant extends BaseEntity
|
||||
@Excel(name = "定量数")
|
||||
private Integer limitNum;
|
||||
|
||||
/**注册地址**/
|
||||
private String hitUrl;
|
||||
|
||||
/** 是否定量 0否 1是 */
|
||||
@Excel(name = "是否定量 0否 1是")
|
||||
private Integer limitType;
|
||||
|
||||
Reference in New Issue
Block a user