forked from kidgrow-microservices-platform

luliqiang
2020-12-31 6fb14149d62199cfcc0448c82eb2f51f9c5181de
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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;
}