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
| package com.sandu.ximon.admin.param;
|
| import com.baomidou.mybatisplus.annotation.TableField;
| import lombok.Data;
|
| /**
| * @Author liuhaonan
| * @Date 2022/3/18 16:35
| * @Version 1.0
| */
| @Data
| public class C3mChargingChargeParam {
|
| private Integer c3Id;
|
| /**
| *
| */
| private Integer hour;
|
| /**
| *
| */
| private Integer min;
|
|
| /**
| * 费率
| */
| private Double charge;
|
|
| private Long timestamp;
|
| }
|
|