| | |
| | | * </p> |
| | | * |
| | | * @author stylefeng |
| | | * @since 2023-02-20 |
| | | * @since 2023-03-10 |
| | | */ |
| | | @TableName("t_recharge_record") |
| | | public class TRechargeRecord extends Model<TRechargeRecord> { |
| | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | /** |
| | | * 数据类型(1=用户,2=司机) |
| | | * 数据类型(1=用户,2=司机,3 = 代理商) |
| | | */ |
| | | private Integer type; |
| | | /** |
| | |
| | | */ |
| | | private BigDecimal amount; |
| | | /** |
| | | * 支付方式(1=微信) |
| | | * 支付方式(1=微信 2 = 系统充值) |
| | | */ |
| | | private Integer payType; |
| | | /** |
| | |
| | | * 添加时间 |
| | | */ |
| | | private Date createTime; |
| | | /** |
| | | * 代理商id |
| | | */ |
| | | private Integer agentId; |
| | | |
| | | public Integer getAgentId() { |
| | | return agentId; |
| | | } |
| | | |
| | | public void setAgentId(Integer agentId) { |
| | | this.agentId = agentId; |
| | | } |
| | | |
| | | public Integer getId() { |
| | | return id; |