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 2024-02-01 20:38
|
* @LastEditTime 2024-02-01 20:38
|
* @Description
|
*/
|
|
@Data
|
@Schema(title = "财务对账,交易明细视图对象")
|
public class VoTradeDetails implements BaseEntity {
|
private static final long serialVersionUID = 202402012040001L;
|
|
@Schema(title = "收银员ID")
|
private String cashierId;
|
|
@Schema(title = "区划名称串")
|
private String districtTitle;
|
|
@Schema(title = "村庄ID")
|
private String villageId;
|
|
@Schema(title = "农户姓名")
|
private String clientName;
|
|
@Schema(title = "联系电话")
|
private String phone;
|
|
@Schema(title = "农户编号")
|
private String clientNum;
|
|
@Schema(title = "业务类型")
|
private String operateType;
|
|
@Schema(title = "交易金额")
|
private Double tradeAmount;
|
|
@Schema(title = "购水金额")
|
private Double waterCost;
|
|
@Schema(title = "购卡金额")
|
private Double cardCost;
|
|
@Schema(title = "赠送金额")
|
private Double gift;
|
|
@Schema(title = "返回金额")
|
private Double refundAmount;
|
|
@Schema(title = "付款方式")
|
private String paymentName;
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
@Schema(title = "交易时间")
|
private Date tradeTime;
|
}
|