|
@@ -1,18 +1,19 @@
|
|
|
package com.ruoyi.framework.recovery.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;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* 积分明细对象 wx_credit
|
|
|
- *
|
|
|
+ *
|
|
|
* @author jin
|
|
|
* @date 2024-12-01
|
|
|
*/
|
|
|
+@Data
|
|
|
public class WxCredit extends BaseEntity
|
|
|
{
|
|
|
private static final long serialVersionUID = 1L;
|
|
@@ -30,70 +31,9 @@ public class WxCredit extends BaseEntity
|
|
|
|
|
|
/** 创建时间 */
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
- @Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
private Date createDate;
|
|
|
|
|
|
/** 更新时间 */
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
- @Excel(name = "更新时间", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
private Date updateDate;
|
|
|
-
|
|
|
- public void setId(Long id)
|
|
|
- {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getId()
|
|
|
- {
|
|
|
- return id;
|
|
|
- }
|
|
|
- public void setCreditType(String creditType)
|
|
|
- {
|
|
|
- this.creditType = creditType;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCreditType()
|
|
|
- {
|
|
|
- return creditType;
|
|
|
- }
|
|
|
- public void setCreditNum(Long creditNum)
|
|
|
- {
|
|
|
- this.creditNum = creditNum;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getCreditNum()
|
|
|
- {
|
|
|
- return creditNum;
|
|
|
- }
|
|
|
- public void setCreateDate(Date createDate)
|
|
|
- {
|
|
|
- this.createDate = createDate;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getCreateDate()
|
|
|
- {
|
|
|
- return createDate;
|
|
|
- }
|
|
|
- public void setUpdateDate(Date updateDate)
|
|
|
- {
|
|
|
- this.updateDate = updateDate;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getUpdateDate()
|
|
|
- {
|
|
|
- return updateDate;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
- .append("id", getId())
|
|
|
- .append("creditType", getCreditType())
|
|
|
- .append("creditNum", getCreditNum())
|
|
|
- .append("createBy", getCreateBy())
|
|
|
- .append("createDate", getCreateDate())
|
|
|
- .append("updateBy", getUpdateBy())
|
|
|
- .append("updateDate", getUpdateDate())
|
|
|
- .toString();
|
|
|
- }
|
|
|
}
|