package com.dy.pipIrrGlobal.voSe;
|
|
import com.dy.common.po.BaseEntity;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.util.Date;
|
|
/**
|
* @author ZhuBaoMin
|
* @date 2023/12/5 8:27
|
* @LastEditTime 2023/12/5 8:27
|
* @Description
|
*/
|
|
@Data
|
@Schema(title = "充值记录视图对象")
|
public class VoRecharge implements BaseEntity {
|
private static final long serialVersionUID = 1L;
|
|
@Schema(title = "ID")
|
private String id;
|
|
@Schema(title = "农户姓名")
|
private String clientName;
|
|
private String phone;
|
|
private String idCard;
|
|
@Schema(title = "农户编号")
|
private String clientNum;
|
|
/**
|
* 水卡余额
|
*/
|
private Float money;
|
|
@Schema(title = "水卡编号")
|
private String cardNum;
|
|
@Schema(title = "充值金额")
|
private Float amount;
|
|
@Schema(title = "返回金额")
|
private Float refundAmount;
|
|
@Schema(title = "充值后金额")
|
private Float afterRecharge;
|
|
@Schema(title = "支付方式")
|
private String paymentName;
|
|
@Schema(title = "水价")
|
private Float price;
|
|
@Schema(title = "操作人")
|
private String opr;
|
|
private String operateType;
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
@Schema(title = "操作时间")
|
private Date operateDt;
|
}
|