HtAnalogDataTwoExportVo.java 435 B

1234567891011121314151617181920212223242526272829
  1. package com.bizmatics.service.vo;
  2. import cn.afterturn.easypoi.excel.annotation.Excel;
  3. import lombok.Data;
  4. import java.util.Date;
  5. /**
  6. * <p>
  7. *
  8. * </p>
  9. *
  10. * @author ya
  11. * @since 2021-07-07
  12. */
  13. @Data
  14. public class HtAnalogDataTwoExportVo {
  15. private Integer id;
  16. @Excel(name = "电量one", height = 6, width = 20)
  17. private Double epp;
  18. @Excel(name = "名称", height = 6, width = 20)
  19. private Date freezingTime;
  20. }