| | |
| | | cdData.thisWater = thisWater/100.0D; |
| | | |
| | | index += 4 ; |
| | | String mm = ByteUtil.BCD2String_BE(bs, index, index) ; |
| | | index++ ; |
| | | String HH = ByteUtil.BCD2String_BE(bs, index, index) ; |
| | | index++ ; |
| | | String dd = ByteUtil.BCD2String_BE(bs, index, index) ; |
| | | index++ ; |
| | | String MM = ByteUtil.BCD2String_BE(bs, index, index) ; |
| | | cdData.rtuStartDt = MM + "-" + dd + " " + HH + ":" + mm ; |
| | | cdData.rtuStartDt = GlParse.parseRtuDt(bs, index) ; |
| | | |
| | | index++ ; |
| | | mm = ByteUtil.BCD2String_BE(bs, index, index) ; |
| | | index++ ; |
| | | HH = ByteUtil.BCD2String_BE(bs, index, index) ; |
| | | index++ ; |
| | | dd = ByteUtil.BCD2String_BE(bs, index, index) ; |
| | | index++ ; |
| | | MM = ByteUtil.BCD2String_BE(bs, index, index) ; |
| | | cdData.rtuEndDt = MM + "-" + dd + " " + HH + ":" + mm ; |
| | | index += 6 ; |
| | | cdData.rtuEndDt = GlParse.parseRtuDt(bs, index) ; |
| | | |
| | | index++ ; |
| | | index += 6 ; |
| | | cdData.useWaterType = bs[index]; |
| | | |
| | | return cdData ; |