forked from go/golangs_learn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
500 B
28 lines
500 B
4 years ago
|
# 信息项校验
|
||
|
|
||
|
|
||
|
|
||
|
## 背景
|
||
|
|
||
|
一般发生excel导入时,存在因为数据长度、类型导致数据无法成功导入,或者因为数据导致系统500,均是存在问题的情况。
|
||
|
|
||
|
为解决这部分问题,制作该工具解决部分潜在问题。
|
||
|
|
||
|
|
||
|
|
||
|
## 统计存在问题
|
||
|
|
||
|
* ⭐数据长度
|
||
|
* 数据类型
|
||
|
* ⭐数据范围
|
||
|
* 数据为空/null
|
||
|
* ...
|
||
|
|
||
|
|
||
|
|
||
|
## 功能
|
||
|
|
||
|
|
||
|
|
||
|
* 实现主动校验数据,并添加不符合规则的颜色
|
||
|
* 实现主动添加数据校验,并设置提示语
|