package com.dy.common.mw.protocol.p206V2.downVos;
|
|
import lombok.Data;
|
|
/**
|
* @Author: liurunyu
|
* @Date: 2024/5/28 21:30
|
* @Description 定时关阀开阀
|
*/
|
@Data
|
public class ComA1Vo {
|
public String icCardNo ;//17位虚拟IC卡编号(协议是10位数字)
|
public Double moneyRemain;//剩余金额(取值范围0.00~999999.99,单位为元)
|
public Double waterPrice;//水价(取值范围0.00~99.99元/m3)
|
public Integer minutes ;//用水时长(0~9999分钟)
|
public Integer year ; //计划开阀时间---年
|
public Integer month ;//计划开阀时间---月
|
public Integer day ;//计划开阀时间---日
|
public Integer hour ;//计划开阀时间---时
|
public Integer minute ;//计划开阀时间---分
|
|
public String orderNo ;//订单号(16位数字)
|
}
|