package com.huimv.getdata.entity.voucher; import com.fasterxml.jackson.annotation.JsonFormat; import lombok.Data; import java.util.Date; @Data public class ErpVoucher { private Double fcredit ; @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") private Date FDATE; private Integer facctorgid; private String FNAME; private String yearperiod; private double endBalance; }