| | |
| | | package com.dy.common.mw.protocol.p206V202404.upVos; |
| | | |
| | | import com.dy.common.mw.protocol.p206V202404.CodeV202404; |
| | | import com.dy.common.mw.protocol.p206V202404.CommonV202404; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | |
| | | public Double thisWater ;//本次使用水量, 单位0.01立方米 |
| | | public Double thisMoney ;//本次使用金额, 单位0.0001元 |
| | | public Integer thisDuration;//本次使用时间长, 单位:分钟 |
| | | public Double price ;//水价 |
| | | |
| | | public String comName ;//命令名称 |
| | | |
| | | public DataCd85Vo(){ |
| | | this.comName = CodeV202404.getCodeName(CodeV202404.cd_85) ; |
| | | } |
| | | public DataCd85Vo(String comName){ |
| | | this.comName = comName ; |
| | | } |
| | |
| | | sb.append(" 本次使用时间长 : ") ; |
| | | sb.append(thisDuration == null?"未知": thisDuration) ; |
| | | sb.append("\n") ; |
| | | sb.append(" 水价 : ") ; |
| | | sb.append(price == null?"未知":price) ; |
| | | sb.append("\n") ; |
| | | return sb.toString() + super.toString() ; |
| | | } |
| | | |