/**
|
# __----~~~~~~~~~~~------___
|
# . . ~~//====...... __--~ ~~
|
# -. \_|// |||\\ ~~~~~~::::... /~
|
# ___-==_ _-~o~ \/ ||| \\ _/~~-
|
# __---~~~.==~||\=_ -_--~/_-~|- |\\ \\ _/~
|
# _-~~ .=~ | \\-_ '-~7 /- / || \ /
|
# .~ .~ | \\ -_ / /- / || \ /
|
# / ____ / | \\ ~-_/ /|- _/ .|| \ /
|
# |~~ ~~|--~~~~--_ \ ~==-/ | \~--===~~ .\
|
# ' ~-| /| |-~\~~ __--~~
|
# |-~~-_/ | | ~\_ _-~ /\
|
# / \ \__ \/~ \__
|
# _--~ _/ | .-~~____--~-/ ~~==.
|
# ((->/~ '.|||' -_| ~~-/ , . _||
|
# -_ ~\ ~~---l__i__i__i--~~_/
|
# _-~-__ ~) \--______________--~~
|
# //.-~~~-~_--~- |-------~~~~~~~~
|
# //.-~~~--\
|
# 神兽保佑
|
# 永无BUG!
|
*/
|
package com.lunhan.water.entity.request.rechargeorder;
|
|
import lombok.Data;
|
import java.math.BigDecimal;
|
|
/**
|
* 用户充值订单
|
* @author lin.liu
|
*/
|
@Data
|
public class ReqModifyRechargeOrder {
|
/**
|
* 主键id
|
*/
|
private Long id;
|
/**
|
* 用户id
|
*/
|
private Long userId;
|
/**
|
* 订单编号
|
*/
|
private String orderNo;
|
/**
|
* 订单金额
|
*/
|
private BigDecimal orderAmount;
|
/**
|
* 折扣金额
|
*/
|
private BigDecimal discountAmount;
|
/**
|
* 实际支付金额
|
*/
|
private BigDecimal paymentAmount;
|
/**
|
* 支付类型 1现金 2微信 3支付宝 4余额
|
*/
|
private Integer payType;
|
/**
|
* 支付时间
|
*/
|
private Long payTime;
|
/**
|
* 状态10待支付 20支付中 200完成支付 300支付失败
|
*/
|
private Integer payState;
|
/**
|
* 备注
|
*/
|
private String remark;
|
}
|