package com.ruoyi.cs.domain; import lombok.Getter; import lombok.Setter; import lombok.ToString; 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; /** * 充值付费明细对象 cs_payment_details * * @author ruoyi * @date 2024-06-20 */ @Getter @Setter @ToString public class CsPaymentDetails extends BaseEntity { private static final long serialVersionUID = 1L; /** 充值付费明细主键ID */ private String paymentDetailsId; /** 相关资源ID */ @Excel(name = "相关资源ID") private String resId; /** 相关资源名 */ @Excel(name = "相关资源名") private String resName; /** 相关资源类型:0-工单,1-资源 */ @Excel(name = "相关资源类型:0-工单,1-资源") private String resType; /** 用户ID */ @Excel(name = "用户ID") private String memberUserId; /** 付费类型ID */ @Excel(name = "付费类型ID") private String paymentTypeId; /** 付费类型 */ @Excel(name = "付费类型") private String paymentType; /** 付费内容 */ @Excel(name = "付费内容") private String paymentContent; /** 负责人 */ @Excel(name = "负责人") private String responsibility; /** 当前余额 */ @Excel(name = "当前余额") private Long nowPrice; /** 充值时间 */ @Excel(name = "充值时间") private String rechargeTime; /** 内容 */ @Excel(name = "内容") private String content; /** 状态:0-正常,1-隐藏 */ @Excel(name = "状态:0-正常,1-隐藏") private String status; /** 排序 */ @Excel(name = "排序") private Integer sort; /** 创建时间 */ @Excel(name = "创建时间") private String createAt; /** 修改时间 */ @Excel(name = "修改时间") private String updateAt; /** 删除标记:0-正常,1-删除 */ @Excel(name = "删除标记:0-正常,1-删除") private String delFlag; }