充值限制

This commit is contained in:
墨大叔 2024-09-13 17:06:22 +08:00
parent 5143b11ed0
commit 0c53e63ce3
4 changed files with 25 additions and 4 deletions

View File

@ -13,10 +13,7 @@ import lombok.Data;
import org.hibernate.validator.constraints.Range;
import org.springframework.format.annotation.DateTimeFormat;
import javax.validation.constraints.Min;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Past;
import javax.validation.constraints.*;
import java.math.BigDecimal;
import java.time.LocalDateTime;
import java.util.Date;
@ -199,4 +196,13 @@ public class Device extends BaseEntity
@ApiModelProperty("剩余电量(度)")
@JsonView(JsonViewProfile.App.class)
private BigDecimal surplusEle;
@Excel(name = "限制充值时间", readConverterExp = "到=期之前不允许充值")
@ApiModelProperty("限制充值时间")
private LocalDateTime limitRechargeTime;
@Excel(name = "限制充值原因")
@ApiModelProperty("限制充值原因")
@Size(max = 200, message = "限制充值原因长度不能超过200个字符")
private String limitRechargeReason;
}

View File

@ -36,6 +36,8 @@ public class DeviceBO extends Device {
bo.setOverPrice(getOverPrice());
bo.setOverUnit(getOverUnit());
bo.setSuitIds(getSuitIds());
bo.setLimitRechargeTime(getLimitRechargeTime());
bo.setLimitRechargeReason(getLimitRechargeReason());
return bo;
}
@ -59,6 +61,8 @@ public class DeviceBO extends Device {
bo.setOverPrice(getOverPrice());
bo.setOverUnit(getOverUnit());
bo.setSuitIds(getSuitIds());
bo.setLimitRechargeTime(getLimitRechargeTime());
bo.setLimitRechargeReason(getLimitRechargeReason());
return bo;
}

View File

@ -125,6 +125,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
sd.rent_time,
sd.lock_user_id,
sd.surplus_ele,
sd.limit_recharge_time,
sd.limit_recharge_reason,
sm.model_name as model,
sm.picture as picture,
sm.tags as model_tags,
@ -291,6 +293,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="rentTime != null">rent_time,</if>
<if test="lockUserId != null">lock_user_id,</if>
<if test="surplusEle != null">surplus_ele,</if>
<if test="limitRechargeTime != null">limit_recharge_time,</if>
<if test="limitRechargeReason != null">limit_recharge_reason,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="storeId != null">#{storeId},</if>
@ -331,6 +335,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="rentTime != null">#{rentTime},</if>
<if test="lockUserId != null">#{lockUserId},</if>
<if test="surplusEle != null">#{surplusEle},</if>
<if test="limitRechargeTime != null">#{limitRechargeTime},</if>
<if test="limitRechargeReason != null">#{limitRechargeReason},</if>
</trim>
</insert>
@ -392,6 +398,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="rentTime != null">rent_time = #{rentTime},</if>
<if test="lockUserId != null">lock_user_id = #{lockUserId},</if>
<if test="surplusEle != null">surplus_ele = #{surplusEle},</if>
<if test="limitRechargeTime != null">limit_recharge_time = #{limitRechargeTime},</if>
<if test="limitRechargeReason != null">limit_recharge_reason = #{limitRechargeReason},</if>
</trim>
where device_id = #{deviceId}
</update>

View File

@ -86,6 +86,9 @@ public class TransactionBillValidatorImpl extends BaseValidator implements Trans
if (StringUtils.isEmpty(device.getMac())) {
return error("当前设备Mac为空无法充值");
}
if (device.getLimitRechargeTime() != null && LocalDateTime.now().isBefore(device.getLimitRechargeTime())) {
return error("当前设备被限制充值:" + device.getLimitRechargeReason());
}
// 判断设备是否有正在使用中的订单
TransactionBillQuery query = new TransactionBillQuery();