From 1198ea43ca127f0a14968d5d57b544a7a2d0cde7 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期一, 05 六月 2023 20:45:53 +0800 Subject: [PATCH] 修改Voc入库的id模式 --- src/main/java/com/yssh/entity/VocVals.java | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/yssh/entity/VocVals.java b/src/main/java/com/yssh/entity/VocVals.java index c5a6868..40c8db7 100644 --- a/src/main/java/com/yssh/entity/VocVals.java +++ b/src/main/java/com/yssh/entity/VocVals.java @@ -4,13 +4,14 @@ import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; +import java.math.BigInteger; import java.util.Date; public class VocVals implements Serializable { private static final long serialVersionUID = -20230605145412000L; @ApiModelProperty(value = "涓婚敭") - private Integer id; + private BigInteger id; @CsvProperty(index = 0) @ApiModelProperty(value = "X") @@ -30,11 +31,11 @@ public VocVals() { } - public Integer getId() { + public BigInteger getId() { return id; } - public void setId(Integer id) { + public void setId(BigInteger id) { this.id = id; } -- Gitblit v1.9.3