package com.doumee.core.device.model.request;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.AllArgsConstructor;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* 接口返回对象
|
*@author doumee
|
*@date 2023/03/21 14:49
|
*/
|
@ApiModel("开会请求参数")
|
@Data
|
public class OpenAccountParamRequest implements Serializable {
|
|
@ApiModelProperty(value = "初始金额")
|
private String money;// 必填 必填 String 100
|
@ApiModelProperty(value = "账户Id")
|
private String account_id;// 必填 不填 String 1 建议始终填1 ,设置后 系统内的户号将失效
|
@ApiModelProperty(value = "充值次数")
|
private String count;// 必填 不填 String 1 开户均填1
|
@ApiModelProperty(value = "电价")
|
private String price ;//必填 不填 String 1 单价 范围:0.01-99.9999 (该字段仅单费率表有效)
|
@ApiModelProperty(value = "透支金额")
|
private String overdraw;// 选填 不填 String 100 透支金额 (电表允许的欠费金额)范围:0-999999 默认:0
|
@ApiModelProperty(value = "一级报警金额")
|
private String display_warning ;//选填 不填 String 20 显示报警金额 (剩余金额低于此值报警灯闪烁)范围 0-999999,默认 100 元
|
@ApiModelProperty(value = "二级报警金额")
|
private String pulloff_warning ;//选填 不填 String 10 断电报警金额 (剩余金额低于此值断电报警,需用合闸命令)范围 0-999999 ,默认 0 元
|
@ApiModelProperty(value = "负荷限制功率")
|
private String load_limit ;//选填 不填 String 10 负荷限制功率 0-99.9999kw 默认 10kw
|
@ApiModelProperty(value = "超负荷恢复延时")
|
private String load_delay;// 选填 不填 String 5 超过负荷断电后 延迟上电时间 0-99 分钟 ,默认 5 分钟
|
@ApiModelProperty(value = "电表倍率")
|
private String rate;// 选填 不填 String 1 电表倍率 , 默认1
|
@ApiModelProperty(value = "屏幕轮显时间")
|
private String display_time;// 选填 不填 String 10 屏幕轮显时间 0-99秒 默认5秒
|
|
}
|