添加动态微信好提取接口
This commit is contained in:
@ -0,0 +1,23 @@
|
||||
package com.stdiet.custom.domain;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
public class SysWxAdLog {
|
||||
|
||||
private String userId;
|
||||
|
||||
private String ip;
|
||||
|
||||
private String userAgent;
|
||||
|
||||
private String channelId;
|
||||
|
||||
private String wxId;
|
||||
|
||||
private Integer type;
|
||||
|
||||
private Date date;
|
||||
}
|
@ -1,5 +1,6 @@
|
||||
package com.stdiet.custom.domain;
|
||||
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.stdiet.common.annotation.Excel;
|
||||
@ -11,6 +12,7 @@ import com.stdiet.common.core.domain.BaseEntity;
|
||||
* @author xiezhijun
|
||||
* @date 2021-02-03
|
||||
*/
|
||||
@Data
|
||||
public class SysWxSaleAccount extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
@ -39,85 +41,7 @@ public class SysWxSaleAccount extends BaseEntity
|
||||
/** 删除标识 0未删除 1已删除,默认0 */
|
||||
private Integer delFlag;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
private Integer status;
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setWxNickName(String wxNickName)
|
||||
{
|
||||
this.wxNickName = wxNickName;
|
||||
}
|
||||
|
||||
public String getWxNickName()
|
||||
{
|
||||
return wxNickName;
|
||||
}
|
||||
public void setWxAccount(String wxAccount)
|
||||
{
|
||||
this.wxAccount = wxAccount;
|
||||
}
|
||||
|
||||
public String getWxAccount()
|
||||
{
|
||||
return wxAccount;
|
||||
}
|
||||
public void setWxPhone(String wxPhone)
|
||||
{
|
||||
this.wxPhone = wxPhone;
|
||||
}
|
||||
|
||||
public String getWxPhone()
|
||||
{
|
||||
return wxPhone;
|
||||
}
|
||||
public void setWxCodeUrl(String wxCodeUrl)
|
||||
{
|
||||
this.wxCodeUrl = wxCodeUrl;
|
||||
}
|
||||
|
||||
public String getWxCodeUrl()
|
||||
{
|
||||
return wxCodeUrl;
|
||||
}
|
||||
public void setWxType(Integer wxType)
|
||||
{
|
||||
this.wxType = wxType;
|
||||
}
|
||||
|
||||
public Integer getWxType()
|
||||
{
|
||||
return wxType;
|
||||
}
|
||||
public void setDelFlag(Integer delFlag)
|
||||
{
|
||||
this.delFlag = delFlag;
|
||||
}
|
||||
|
||||
public Integer getDelFlag()
|
||||
{
|
||||
return delFlag;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("wxNickName", getWxNickName())
|
||||
.append("wxAccount", getWxAccount())
|
||||
.append("wxPhone", getWxPhone())
|
||||
.append("wxCodeUrl", getWxCodeUrl())
|
||||
.append("remark", getRemark())
|
||||
.append("wxType", getWxType())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.append("delFlag", getDelFlag())
|
||||
.toString();
|
||||
}
|
||||
private Integer useCount;
|
||||
}
|
Reference in New Issue
Block a user