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 :WuZeYu 
 | 
 * @Date :2024/1/26  9:31 
 | 
 * @LastEditTime :2024/1/26  9:31 
 | 
 * @Description 
 | 
 */ 
 | 
@Data 
 | 
@Schema(title = "补卡记录视图对象") 
 | 
public class VoReissueCard implements BaseEntity { 
 | 
    private static final long serialVersionUID = 2024012609330001L; 
 | 
  
 | 
    @Schema(title = "ID") 
 | 
    private Long id; 
 | 
  
 | 
    @Schema(title = "农户姓名") 
 | 
    private String clientName; 
 | 
  
 | 
    @Schema(title = "农户编号") 
 | 
    private String clientNum; 
 | 
  
 | 
    @Schema(title = "水卡编号") 
 | 
    private String cardNum; 
 | 
  
 | 
    @Schema(title = "卡片费用") 
 | 
    private Integer cardCost; 
 | 
  
 | 
    @Schema(title = "补卡金额") 
 | 
    @JsonFormat(shape = JsonFormat.Shape.NUMBER_FLOAT, pattern="0.00" ) 
 | 
    private Double reissueAmount; 
 | 
  
 | 
    @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; 
 | 
} 
 |