package com.kidgrow.oprationcenter.vo; import cn.afterturn.easypoi.excel.annotation.Excel; import com.kidgrow.common.constant.CommonConstant; import lombok.Data; import java.io.Serializable; import java.util.Date; @Data public class SaasClientPayExcel implements Serializable { private static final long serialVersionUID = -5886012896705137070L; @Excel(name = "支付id", height = 20, width = 30, isImportField = "true_st") private String id; @Excel(name = "医院名称", height = 20, width = 30, isImportField = "true_st") private String createHospitalName; @Excel(name = "科室", height = 20, width = 30, isImportField = "true_st") private String createHospitalDepartment; @Excel(name = "诊断人", height = 20, width = 30, isImportField = "true_st") private String createUserName; @Excel(name = "患者姓名", height = 20, width = 30, isImportField = "true_st") private String childName; @Excel(name = "性别", replace = { "男_0", "女_1" }, isImportField = "true_st") private Integer childSex; @Excel(name = "出生日期", format = CommonConstant.DATETIME_FORMAT, isImportField = "true_st", width = 20) private Date childBirthday; @Excel(name = "订单号", height = 20, width = 30, isImportField = "true_st") private String tradeNo; @Excel(name = "支付日期", format = CommonConstant.DATETIME_FORMAT, isImportField = "true_st", width = 20) private Date payTime; @Excel(name = "支付方式", replace = { "微信_0", "支付宝_1" }, isImportField = "true_st") private Integer payMethod; @Excel(name = "支付费用", height = 20, width = 30, isImportField = "true_st") private Double payPrice; @Excel(name = "给医生", height = 20, width = 30, isImportField = "true_st") private Double payCustom; @Excel(name = "给喜高", height = 20, width = 30, isImportField = "true_st") private Double payKidgrow; }