BillingModelDTO.java 668 B

1234567891011121314151617181920212223242526272829
  1. package com.tmzn.devicelinkykc.entity.param.dto;
  2. import lombok.Data;
  3. import java.io.Serializable;
  4. import java.math.BigDecimal;
  5. import java.util.Date;
  6. /**
  7. * @author xp
  8. * @date 2024/4/17
  9. * @explain " "
  10. */
  11. @Data
  12. public class BillingModelDTO implements Serializable {
  13. private String deviceImei;
  14. private float sharpPrice;
  15. private float sharpServiceFee;
  16. private float peakPrice;
  17. private float peakServiceFee;
  18. private float flatPrice;
  19. private float flatServiceFee;
  20. private float valleyPrice;
  21. private float valleyServiceFee;
  22. private float deepValleyPrice;
  23. private float deepValleyServiceFee;
  24. private String timeSlot;
  25. }