| 1234567891011121314151617181920212223242526272829 |
- package com.tmzn.devicelinkykc.entity.param.dto;
- import lombok.Data;
- import java.io.Serializable;
- import java.math.BigDecimal;
- import java.util.Date;
- /**
- * @author xp
- * @date 2024/4/17
- * @explain " "
- */
- @Data
- public class BillingModelDTO implements Serializable {
- private String deviceImei;
- private float sharpPrice;
- private float sharpServiceFee;
- private float peakPrice;
- private float peakServiceFee;
- private float flatPrice;
- private float flatServiceFee;
- private float valleyPrice;
- private float valleyServiceFee;
- private float deepValleyPrice;
- private float deepValleyServiceFee;
- private String timeSlot;
- }
|