1234567891011121314151617181920212223242526272829 |
- package com.bizmatics.service.vo;
- import cn.afterturn.easypoi.excel.annotation.Excel;
- import lombok.Data;
- import java.util.Date;
- /**
- * <p>
- *
- * </p>
- *
- * @author ya
- * @since 2021-07-07
- */
- @Data
- public class HtAnalogDataTwoExportVo {
- private Integer id;
- @Excel(name = "电量one", height = 6, width = 20)
- private Double epp;
- @Excel(name = "名称", height = 6, width = 20)
- private Date freezingTime;
- }
|