fix: MybatisPlus 主键策略使用雪花算法 ASSIGN_ID 时,获取登录验证码主键精度丢失问题

SmsCodeDO 主键类型为 Integer,使用雪花算法后 Long 转 Integer 精度丢失,system_sms_code 表数据入库后主键为负数
This commit is contained in:
打听幸福的下落 2023-03-16 20:25:29 +08:00
parent 9c4e54a5ce
commit aae6f12832

View File

@ -26,7 +26,7 @@ public class SmsCodeDO extends BaseDO {
/**
* 编号
*/
private Integer id;
private Long id;
/**
* 手机号
*/