package com.dy.pipIrrGlobal.pojoSe;
|
|
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/6 13:57
|
* @LastEditTime 2023/12/6 13:57
|
* @Description
|
*/
|
|
@Data
|
@Schema(title = "注销记录视图对象")
|
public class VoCancel implements BaseEntity {
|
private static final long serialVersionUID = 1L;
|
|
@Schema(title = "ID")
|
private Long id;
|
|
@Schema(title = "农户姓名")
|
private String clientName;
|
|
@Schema(title = "农户编号")
|
private Long clientId;
|
|
@Schema(title = "水卡地址")
|
private String cardAddr;
|
|
@Schema(title = "退回金额")
|
private Float refund;
|
|
@Schema(title = "退款方式 1-现金")
|
private Byte refundType;
|
|
@Schema(title = "退款方式名称")
|
private String refundTypeName;
|
|
@Schema(title = "操作人")
|
private String operator;
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
@Schema(title = "操作时间")
|
private Date operateDt;
|
}
|