mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-15 04:39:50 +08:00
add 新增sim卡充值记录实体类
This commit is contained in:
@@ -0,0 +1,64 @@
|
||||
package com.jsowell.pile.domain;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
import com.jsowell.common.annotation.Excel;
|
||||
import com.jsowell.common.core.domain.BaseEntity;
|
||||
import lombok.*;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
|
||||
/**
|
||||
* sim卡续费记录表对象 sim_recharge_record
|
||||
*
|
||||
* @author jsowell
|
||||
* @date 2026-03-06
|
||||
*/
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Builder
|
||||
public class SimRechargeRecord extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* $column.columnComment
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 充值订单号
|
||||
*/
|
||||
@Excel(name = "充值订单号")
|
||||
private String rechargeOrderCode;
|
||||
|
||||
/**
|
||||
* iccid
|
||||
*/
|
||||
@Excel(name = "iccId")
|
||||
private String iccId;
|
||||
|
||||
/**
|
||||
* 支付金额
|
||||
*/
|
||||
@Excel(name = "支付金额")
|
||||
private BigDecimal payAmount;
|
||||
|
||||
/**
|
||||
* 状态(0-成功;1-失败)
|
||||
*/
|
||||
@Excel(name = "状态", readConverterExp = "0=-成功;1-失败")
|
||||
private String status;
|
||||
|
||||
/**
|
||||
* 订单金额
|
||||
*/
|
||||
@Excel(name = "订单金额")
|
||||
private BigDecimal orderAmount;
|
||||
|
||||
/**
|
||||
* 删除标识
|
||||
*/
|
||||
private String delFlag;
|
||||
}
|
||||
Reference in New Issue
Block a user