old mode 100644
new mode 100755
| | |
| | | private Integer tenantId; |
| | | |
| | | |
| | | /**蒸汽消耗*/ |
| | | @ApiModelProperty(value = "蒸汽消耗") |
| | | private Double steam; |
| | | |
| | | /**电能消耗*/ |
| | | @ApiModelProperty(value = "电能消耗") |
| | | private Double watt; |
| | | |
| | | |
| | | public DryOrderTrendVo(RealTimeDataVo realTimeDataVo) { |
| | | this.fanFrequency = realTimeDataVo.getFanfrq(); |
| | | this.weight = realTimeDataVo.getWeight3(); |
| | |
| | | this.turn = realTimeDataVo.getTurntime(); |
| | | this.totalTime = realTimeDataVo.getTime3(); |
| | | this.orderId = realTimeDataVo.getOrderId(); |
| | | this.watt = realTimeDataVo.getWatt(); |
| | | this.steam = realTimeDataVo.getSteam(); |
| | | this.tim = new Date(); |
| | | } |
| | | } |