opt:统一把业务id等字段的Long类型改为String类型,避免前端序列号丢失精度。

This commit is contained in:
2024-02-28 13:44:02 +08:00
parent 8da9a4fd3c
commit 30e79d3939
62 changed files with 3736 additions and 1594 deletions

View File

@@ -28,7 +28,7 @@ public class BaseQuery<T> {
/**
* 是否启用
*/
private Boolean is_used;
private String is_used;
/**
* 创建时间范围查询
*/

View File

@@ -40,7 +40,7 @@ public enum PackageInfoIvtEnum {
POINT_LOCATION(MapOf.of("", "0", "", "1")),
//库存状态
IVT_STATUS(MapOf.of("", "0", "1", "空载具", "2", "有子卷"));
IVT_STATUS(MapOf.of("", "0","空载具", "1","有子卷","2"));
private Map<String, String> code;