145 lines
2.8 KiB
Java
145 lines
2.8 KiB
Java
package com.ruoyi.system.domain;
|
||
|
||
import java.util.Date;
|
||
|
||
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;
|
||
|
||
/**
|
||
* 积分订单日志对象 integral_order_log
|
||
*
|
||
* @author ruoyi
|
||
* @date 2025-05-13
|
||
*/
|
||
public class IntegralOrderLog extends BaseEntity
|
||
{
|
||
private static final long serialVersionUID = 1L;
|
||
|
||
/** $column.columnComment */
|
||
private Long id;
|
||
|
||
/** 订单ID */
|
||
@Excel(name = "订单ID")
|
||
private Long oid;
|
||
|
||
/** 订单号 */
|
||
@Excel(name = "订单号")
|
||
private String orderId;
|
||
|
||
/** 标题 */
|
||
@Excel(name = "标题")
|
||
private String title;
|
||
|
||
/** 内容 */
|
||
@Excel(name = "内容")
|
||
private String content;
|
||
|
||
/** 1:订单生成 2:发货 3:收货 */
|
||
@Excel(name = "1:订单生成 2:发货 3:收货")
|
||
private Long type;
|
||
|
||
/** $column.columnComment */
|
||
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||
private Date createdAt;
|
||
|
||
/** $column.columnComment */
|
||
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||
private Date updatedAt;
|
||
|
||
public void setId(Long id)
|
||
{
|
||
this.id = id;
|
||
}
|
||
|
||
public Long getId()
|
||
{
|
||
return id;
|
||
}
|
||
|
||
public void setOid(Long oid)
|
||
{
|
||
this.oid = oid;
|
||
}
|
||
|
||
public Long getOid()
|
||
{
|
||
return oid;
|
||
}
|
||
|
||
public void setOrderId(String orderId)
|
||
{
|
||
this.orderId = orderId;
|
||
}
|
||
|
||
public String getOrderId()
|
||
{
|
||
return orderId;
|
||
}
|
||
|
||
public void setTitle(String title)
|
||
{
|
||
this.title = title;
|
||
}
|
||
|
||
public String getTitle()
|
||
{
|
||
return title;
|
||
}
|
||
|
||
public void setContent(String content)
|
||
{
|
||
this.content = content;
|
||
}
|
||
|
||
public String getContent()
|
||
{
|
||
return content;
|
||
}
|
||
|
||
public void setType(Long type)
|
||
{
|
||
this.type = type;
|
||
}
|
||
|
||
public Long getType()
|
||
{
|
||
return type;
|
||
}
|
||
|
||
public void setCreatedAt(Date createdAt)
|
||
{
|
||
this.createdAt = createdAt;
|
||
}
|
||
|
||
public Date getCreatedAt()
|
||
{
|
||
return createdAt;
|
||
}
|
||
|
||
public void setUpdatedAt(Date updatedAt)
|
||
{
|
||
this.updatedAt = updatedAt;
|
||
}
|
||
|
||
public Date getUpdatedAt()
|
||
{
|
||
return updatedAt;
|
||
}
|
||
|
||
@Override
|
||
public String toString() {
|
||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||
.append("id", getId())
|
||
.append("oid", getOid())
|
||
.append("orderId", getOrderId())
|
||
.append("title", getTitle())
|
||
.append("content", getContent())
|
||
.append("type", getType())
|
||
.append("createdAt", getCreatedAt())
|
||
.append("updatedAt", getUpdatedAt())
|
||
.toString();
|
||
}
|
||
}
|