|
|
|
@ -1,6 +1,8 @@
|
|
|
|
|
package com.numone.system.domain; |
|
|
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
|
|
|
|
|
|
|
import lombok.Data; |
|
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder; |
|
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle; |
|
|
|
|
import com.numone.common.annotation.Excel; |
|
|
|
@ -12,6 +14,7 @@ import com.numone.common.core.domain.BaseEntity;
|
|
|
|
|
* @author numone |
|
|
|
|
* @date 2022-02-25 |
|
|
|
|
*/ |
|
|
|
|
@Data |
|
|
|
|
public class AppRebateRecord extends BaseEntity |
|
|
|
|
{ |
|
|
|
|
private static final long serialVersionUID = 1L; |
|
|
|
@ -21,7 +24,7 @@ public class AppRebateRecord extends BaseEntity
|
|
|
|
|
|
|
|
|
|
/** 用户id */ |
|
|
|
|
@Excel(name = "用户id") |
|
|
|
|
private Integer userId; |
|
|
|
|
private Long userId; |
|
|
|
|
|
|
|
|
|
/** 返利内容 */ |
|
|
|
|
@Excel(name = "返利内容") |
|
|
|
@ -43,84 +46,5 @@ public class AppRebateRecord extends BaseEntity
|
|
|
|
|
@Excel(name = "删除标志") |
|
|
|
|
private Integer deleteId; |
|
|
|
|
|
|
|
|
|
public void setId(Integer id) |
|
|
|
|
{ |
|
|
|
|
this.id = id; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Integer getId() |
|
|
|
|
{ |
|
|
|
|
return id; |
|
|
|
|
} |
|
|
|
|
public void setUserId(Integer userId) |
|
|
|
|
{ |
|
|
|
|
this.userId = userId; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Integer getUserId() |
|
|
|
|
{ |
|
|
|
|
return userId; |
|
|
|
|
} |
|
|
|
|
public void setContent(String content) |
|
|
|
|
{ |
|
|
|
|
this.content = content; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getContent() |
|
|
|
|
{ |
|
|
|
|
return content; |
|
|
|
|
} |
|
|
|
|
public void setPriceNum(BigDecimal priceNum) |
|
|
|
|
{ |
|
|
|
|
this.priceNum = priceNum; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public BigDecimal getPriceNum() |
|
|
|
|
{ |
|
|
|
|
return priceNum; |
|
|
|
|
} |
|
|
|
|
public void setCreateById(Integer createById) |
|
|
|
|
{ |
|
|
|
|
this.createById = createById; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Integer getCreateById() |
|
|
|
|
{ |
|
|
|
|
return createById; |
|
|
|
|
} |
|
|
|
|
public void setUpdateById(Integer updateById) |
|
|
|
|
{ |
|
|
|
|
this.updateById = updateById; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Integer getUpdateById() |
|
|
|
|
{ |
|
|
|
|
return updateById; |
|
|
|
|
} |
|
|
|
|
public void setDeleteId(Integer deleteId) |
|
|
|
|
{ |
|
|
|
|
this.deleteId = deleteId; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Integer getDeleteId() |
|
|
|
|
{ |
|
|
|
|
return deleteId; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public String toString() { |
|
|
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
|
|
|
|
.append("id", getId()) |
|
|
|
|
.append("userId", getUserId()) |
|
|
|
|
.append("content", getContent()) |
|
|
|
|
.append("priceNum", getPriceNum()) |
|
|
|
|
.append("createById", getCreateById()) |
|
|
|
|
.append("createBy", getCreateBy()) |
|
|
|
|
.append("createTime", getCreateTime()) |
|
|
|
|
.append("updateById", getUpdateById()) |
|
|
|
|
.append("updateBy", getUpdateBy()) |
|
|
|
|
.append("updateTime", getUpdateTime()) |
|
|
|
|
.append("deleteId", getDeleteId()) |
|
|
|
|
.toString(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|