| | |
| | | public class ChargingOrderAndUploadRealTimeMonitoringDataDto extends BaseModel { |
| | | |
| | | private String id; |
| | | private Integer index; |
| | | private String transaction_serial_number; // 交易流水号 |
| | | private String charging_pile_code; // 桩编码 |
| | | private String charging_gun_code; // 抢号 |
| | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @TableField("pay_time") |
| | | private LocalDateTime payTime; |
| | | @ApiModelProperty(value = "站点名称") |
| | | private String siteName; |
| | | @ApiModelProperty(value = "充电终端名称 桩+枪") |
| | | private String terminalName; |
| | | @ApiModelProperty(value = "充电时间 秒") |
| | | private Long chargingSecond; |
| | | @ApiModelProperty(value = "平台手续费") |
| | | private BigDecimal platFormMoney; |
| | | @ApiModelProperty(value = "三方平台分佣") |
| | | private BigDecimal commission; |
| | | @ApiModelProperty(value = "车牌号") |
| | | private String licensePlate; |
| | | @ApiModelProperty(value = "手机号") |
| | | private String phone; |
| | | |
| | | |
| | | @ApiModelProperty(value = "时段数") |
| | | private Integer count; |
| | | @ApiModelProperty(value = "查看按钮权限 ") |
| | | private Boolean authInfo = true; |
| | | @ApiModelProperty(value = "删除按钮权限 ") |
| | | private Boolean authDelete = true; |
| | | |
| | | |
| | | } |